| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083 |
- <?php
- /**
- * Created by PhpStorm.
- * User: leo
- * Date: 2018/8/2
- * Time: 上午10:32
- */
- namespace common\helpers\bonus;
- use common\helpers\Cache;
- use common\helpers\Date;
- use common\helpers\LoggerTool;
- use common\helpers\snowflake\SnowFake;
- use common\helpers\Tool;
- use common\models\CalcBonus;
- use common\models\CalcBonusBD;
- use common\models\CalcBonusBS;
- use common\models\CalcBonusQuarter;
- use common\models\CalcBonusBT;
- use common\models\CalcBonusCF;
- use common\models\CalcBonusFL;
- use common\models\CalcBonusFW;
- use common\models\CalcBonusFX;
- use common\models\CalcBonusGarage;
- use common\models\CalcBonusGL;
- use common\models\CalcBonusGX;
- use common\models\CalcBonusHB;
- use common\models\CalcBonusLS;
- use common\models\CalcBonusLX;
- use common\models\CalcBonusQY;
- use common\models\CalcBonusStandard;
- use common\models\CalcBonusTG;
- use common\models\CalcBonusTourism;
- use common\models\CalcBonusVilla;
- use common\models\CalcBonusVIP;
- use common\models\CalcBonusXF;
- use common\models\CalcBonusYC;
- use common\models\CalcBonusYJ;
- use common\models\CalcMonthBonusUser;
- use common\models\Config;
- use common\models\FlowDeductZR;
- use common\models\PerfCompany;
- use common\models\PerfMonth;
- use common\models\PerfPeriod;
- use common\models\Period;
- use common\models\ResendQY;
- use common\models\DeclarationLevel;
- use common\models\DecOrder;
- use common\models\EmployLevel;
- use common\models\FlowBonus;
- use common\models\PerfActiveUser;
- use common\models\ScoreMonth;
- use common\models\StarCrownLevel;
- use common\models\User;
- use common\models\UserInfo;
- use common\models\UserPerf;
- use SebastianBergmann\CodeCoverage\Report\PHP;
- use yii\base\BaseObject;
- use yii\base\Exception;
- use yii\base\StaticInstanceTrait;
- use yii\helpers\Json;
- use yii\db\Query;
- class BonusCalc extends BaseObject {
- use StaticInstanceTrait;
- private $_limit = 1000;
- private $_gxLimit = 500;
- private $_handleUserId;
- private $_companyMonthPerf = 0;
- private $_cfTotalPercent = 0;
- private $_lxTotalPercent = 0;
- private $_sysConfig = [];
- private $_decLevelConfig = [];
- private $_empLevelConfig = [];
- private $_starCrownLevelConfig = [];
- private $_decRoleConfig = [];
- private $_errors = [];
- private $_periodNum = 0;
- private $_periodId;
- private $_isCalcMonth = 0;
- private $_calcYear;
- private $_calcMonth;
- private $_calcYearMonth;
- private $_calcMonthPeriodNumCount = 0;
- private $_lastCalcYear;
- private $_lastCalcMonth;
- private $_lastCalcYearMonth;
- private $_lastPeriodNum;
- private $_lastPeriodYear;
- private $_lastPeriodMonth;
- private $_lastPeriodYearMonth;
- //pv
- private $_pvRatio;
- private $_calcZone = ['openTravel', 'openCar', 'openHouse'];
- const LOOP_FINISH = 1;
- const LOOP_CONTINUE = 2;
- const GX_FLOOR_LIMIT = 5; // 共享奖向上找的最大层级
- const GX_LIMIT_SWITCH = true; // 是否开启共享奖向上找的最大限制 true 为开启 false 关闭
- const ORDER_TYPE_TO_FW_COEFFICIENT = [
- 'ZC' => 'fwCoefficientFromZc',
- 'FX_CASH' => 'fwCoefficientFromFxCash',
- 'FX_POINT' => 'fwCoefficientFromFxPoint',
- ];
- const JX_STANDARD_BASE_AMOUNT = 10000;
- const JX_STANDARD_MAX_TIMES = 50;
- const JX_STANDARD_BONUS_PERCENT = 15;
- //最小报单pv
- const MIN_BD_PV = 980;
- /**
- * 1、抓取所有报单、订单,把能当时产生业绩的报单存入业绩单。例如注册单,订单
- * 2、从业绩单中循环,并计算上下级业绩
- * 3、计算级别
- * 4、计算各个奖项
- * 5、给会员追加总业绩,在结算中不妥,打算把追加总业绩放到挂网中,因为结算完成以后的业绩都不是最终的,有可能还会变
- */
- /**
- * 初始化
- */
- public function init() {
- parent::init();
- }
- /**
- * 设置期数
- * @param int $periodNum
- * @return int
- */
- public function setPeriodNum(int $periodNum) {
- return $this->_periodNum = $periodNum;
- }
- /**
- * 获取期数
- * @return int
- */
- public function getPeriodNum() {
- return $this->_periodNum;
- }
- /**
- * 加入错误错误
- * @param $attr
- * @param $error
- */
- public function addError($attr, $error) {
- $this->_errors[$attr][] = $error;
- }
- /**
- * 获取错误信息
- * @return array
- */
- public function getErrors() {
- return $this->_errors;
- }
- /**
- * 开始执行结算步骤
- * @param $periodNum
- * @param null $handleUserId
- * @return bool
- */
- public function calcStep($periodNum, $handleUserId = null) {
- try {
- $this->_errors = [];
- $this->setPeriodNum($periodNum);
- $this->_handleUserId = $handleUserId;
- $t1 = microtime(true);
- // 初始化结算任务
- $this->initCalcTask();
- // 设置结算状态
- $this->setCalcStatus('start');
- // 清空所有本期结算用到的缓存
- CalcCache::clearCalcBonusCache($this->_periodNum);
- // 清空相关表数据
- $this->clearCalcTableData();
- $t2 = microtime(true);
- echo('初始化、清空缓存及相关数据表完成,耗时:' . round($t2 - $t1, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(5);
- $t3 = microtime(true);
- $this->_updatePercent(10);
- // 奖金部分
- if($this->_sysConfig['openFW']['VALUE']) {
- $this->calcBonusBDStepOne();
- $this->calcBonusBDStepTwo();
- }
- $t4 = microtime(true);
- echo('计算服务奖'.($this->_sysConfig['openFW']['VALUE']?'完成':'关闭').',耗时:' . round($t4 - $t3, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(15);
- // 销售奖/推广奖
- if($this->_sysConfig['openTG']['VALUE']) {
- $this->calcBonusTG();
- }
- $t5 = microtime(true);
- echo('计算推广奖'.($this->_sysConfig['openTG']['VALUE']?'完成':'关闭').',耗时:' . round($t5 - $t4, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(20);
- // if($this->_sysConfig['openXF']['VALUE']) {
- // if( $this->_sysConfig['consumeRecPercent']['VALUE'] > 0 ) {
- // $this->calcBonusXFToRec();
- // }
- // if( $this->_sysConfig['consumeSelfPercent']['VALUE'] > 0 ) {
- // $this->calcBonusXFToSelf();
- // }
- // }
- // $t6 = microtime(true);
- // echo('计算消费奖'.($this->_sysConfig['openXF']['VALUE']?'完成':'关闭').',耗时:' . round($t6 - $t5, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(25);
- //
- // if($this->_sysConfig['openYJ']['VALUE']) {
- // $this->calcBonusBdYJ();
- // }
- // $t7 = microtime(true);
- // echo('计算报单业绩奖'.($this->_sysConfig['openYJ']['VALUE']?'完成':'关闭').',耗时:' . round($t7 - $t6, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(30);
- //
- // if($this->_sysConfig['fxOpenYJ']['VALUE']) {
- // $this->calcBonusFxYJ();
- // }
- $t8 = microtime(true);
- // echo('计算复消业绩奖'.($this->_sysConfig['fxOpenYJ']['VALUE']?'完成':'关闭').',耗时:' . round($t8 - $t7, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(35);
- // 绩效奖/团队奖
- if($this->_sysConfig['openQY']['VALUE']) {
- $this->calcBonusQY();
- // $this->calcBonusBdQY();
- // $this->calcBonusFxQY();
- }
- $t9 = microtime(true);
- echo('计算团队奖'.($this->_sysConfig['openQY']['VALUE']?'完成':'关闭').',耗时:' . round($t9 - $t8, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(65);
- // if($this->_sysConfig['openGX']['VALUE']) {
- // $this->calcBonusGXBefore();
- // $this->calcBonusGX();
- // }
- // $t11 = microtime(true);
- // echo('计算共享奖'.($this->_sysConfig['openGX']['VALUE']?'完成':'关闭').',耗时:' . round($t11 - $t9, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(68);
- //
- // if($this->_sysConfig['openGL']['VALUE']) {
- // $this->calcBonusBdGL();
- // }
- // $t13 = microtime(true);
- // echo('计算报单管理奖'.($this->_sysConfig['openGL']['VALUE']?'完成':'关闭').',耗时:' . round($t13 - $t11, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(50);
- //
- // if($this->_sysConfig['fxOpenGL']['VALUE']) {
- // $this->calcBonusFxGL();
- // }
- // $t14 = microtime(true);
- // echo('计算复消管理奖'.($this->_sysConfig['fxOpenGL']['VALUE']?'完成':'关闭').',耗时:' . round($t14 - $t13, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(70);
- //
- // if($this->_sysConfig['openYC']['VALUE']) {
- // $this->calcBonusYCStepOne();
- // $this->calcBonusYCStepTwo();
- // }
- // $t16 = microtime(true);
- // echo('计算荣衔奖'.($this->_sysConfig['openYC']['VALUE']?'完成':'关闭').',耗时:' . round($t16 - $t13, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(55);
- //
- // if($this->_sysConfig['openVIP']['VALUE']) {
- // $this->calcBonusVIP();
- // }
- // $t17 = microtime(true);
- // echo('计算VIP奖'.($this->_sysConfig['openVIP']['VALUE']?'完成':'关闭').',耗时:' . round($t17 - $t16, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(60);
- //
- // if($this->_sysConfig['openJXS']['VALUE']) {
- // $this->calcBonusStandard();
- // }
- // $t18 = microtime(true);
- // echo('计算达标奖'.($this->_sysConfig['openJXS']['VALUE']?'完成':'关闭').',耗时:' . round($t18 - $t17, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(65);
- $t19 = microtime(true);
- // 蓝星奖入库,实际上是插入有奖金会员数据缓存中.
- echo('计算蓝星奖开始,' . date('Y-m-d H:i:s', $t19) . PHP_EOL);
- // 调用存储过程,计算蓝星管理奖金
- $this->calcBsProcedure();
- // 将有【蓝星业绩奖金】的用户加入到有奖金缓存用户中
- $this->calcBonusBsYJ();
- // 将有【蓝星管理奖金】的用户加入到有奖金缓存用户中
- $this->calcBonusBsGL();
- $t20 = microtime(true);
- echo('计算蓝星奖'.($this->_sysConfig['openGL']['VALUE']?'完成':'关闭').',耗时:' . round($t20 - $t19, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(67);
- // $this->calcBonusTourism($this->_sysConfig['openTourism']);
- $t21 = microtime(true);
- // echo('计算旅游奖' . ($this->_sysConfig['openTourism']['VALUE'] ? '完成' : '关闭') . ',耗时:' . round($t21 - $t20, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- // $this->_updatePercent(68);
- $this->calcBonusVilla();
- $t22 = microtime(true);
- echo('计算房奖' . ($this->_sysConfig['openVilla']['VALUE'] ? '完成' : '关闭').',耗时:' . round($t22 - $t21, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL . PHP_EOL);
- $this->_updatePercent(69);
- $this->calcBonusGarage();
- $t23 = microtime(true);
- echo('计算车奖' . ($this->_sysConfig['openGarage']['VALUE'] ? '完成' : '关闭').',耗时:' . round($t23 - $t22, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL . PHP_EOL);
- $this->_updatePercent(69);
- // 计算季度奖
- $this->calcQuarter();
- // 将用户写入缓存
- $this->calcQuarterUser();
- $t24 = microtime(true);
- echo('计算季度奖' . ($this->_sysConfig['openQuarter']['VALUE'] ? '完成' : '关闭').',耗时:' . round($t24 - $t23, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL . PHP_EOL);
- //把奖金会员写入缓存
- $this->loopMonthBonusUserFromDbToCache();
- $t30 = microtime(true);
- echo('奖金会员写入缓存完成,耗时:' . round($t30 - $t22, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(70);
- //奖金写库
- // 这里增加新的奖金入库操作.
- $this->loopBonusUsers();
- // 入库完成,将各个奖金计算流水会员聘级,更新成蓝星奖当时计算的聘级
- $this->loopCalcBlueEmpLv();
- $this->_updatePercent(75);
- unset($calcWrite);
- $t31 = microtime(true);
- echo('奖金写库操作完成,耗时:' . round($t31 - $t30, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- //把本期奖金会员入库 - 把缓存中的月奖用户信息存到数据库.存储过程的入库不在这里进行,这里代码取的缓存,存储过程没有缓存,在上面进行入库
- $this->loopMonthBonusUserToDb();
- $t32 = microtime(true);
- echo('奖金会员入库完成,耗时:' . round($t32 - $t31, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $this->_updatePercent(80);
- // 计算基础积分,不可以奖金入库之前计算这样可能会丢掉只有本期的奖金的会员
- $this->calcBaseScore();
- $this->_updatePercent(90);
- $t33 = microtime(true);
- echo('计算基础积分,耗时:' . round($t33 - $t32, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- //积分入库
- $this->loopWriteScore();
- $this->_updatePercent(100);
- $t34 = microtime(true);
- echo('积分写库操作完成,耗时:' . round($t34 - $t33, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- $t35 = microtime(true);
- echo('结算全部完成,共耗时:' . round($t35 - $t34, 3) . ',内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL . PHP_EOL);
- } catch (\Exception $e) {
- $this->errorCalcTask();
- $this->addError('calc', sprintf('File【%s】, Line【%s】, Msg【%s】', $e->getFile(), $e->getLine(), $e->getMessage()));
- return false;
- }
- return true;
- }
- /**
- * 结算完成
- */
- public function endCalcTask() {
- // 更新结算状态
- $this->setCalcStatus('end');
- }
- /**
- * 结算错误
- */
- public function errorCalcTask() {
- // 清空所有本期结算用到的缓存
- CalcCache::clearCalcBonusCache($this->_periodNum);
- // 更新结算状态
- $this->setCalcStatus('fail');
- }
- /**
- * 初始化结算任务
- * @throws \yii\db\Exception
- */
- public function initCalcTask() {
- $this->_sysConfig = Cache::getSystemConfig();
- $this->_decLevelConfig = Cache::getDecLevelConfig();
- $this->_empLevelConfig = Cache::getEmpLevelConfig();
- $this->_starCrownLevelConfig = Cache::getStarCrownLevelConfig();
- $this->_decRoleConfig = CalcCache::getDecRoleConfig($this->_periodNum);
- $periodNum = $this->_periodNum;
- // 获取本年月和上年月
- $periodObj = Period::instance();
- $periodDataArr = $periodObj->setPeriodNum($periodNum);
- $this->_periodId = $periodDataArr['ID'];
- $this->_isCalcMonth = $periodObj->isCalcMonth($periodNum);
- $this->_calcYear = $periodObj->getYear($periodNum);
- $this->_calcMonth = $periodObj->getMonth($periodNum);
- $this->_calcYearMonth = $periodObj->getYearMonth($periodNum);
- $this->_calcMonthPeriodNumCount = $periodObj->getYearMonthAllPeriodNumCount($this->_calcYear, $this->_calcMonth);
- $lastYearMonthArr = $periodObj->getLastMonth($periodNum);
- $this->_lastCalcYear = $lastYearMonthArr['year'];
- $this->_lastCalcMonth = $lastYearMonthArr['month'];
- $this->_lastCalcYearMonth = $lastYearMonthArr['yearMonth'];
- $this->_lastPeriodNum = $periodNum - 1;
- if (Period::isExistsPeriodNum($this->_lastPeriodNum)) {
- $this->_lastPeriodYear = $periodObj->getYear($this->_lastPeriodNum);
- $this->_lastPeriodMonth = $periodObj->getMonth($this->_lastPeriodNum);
- $this->_lastPeriodYearMonth = $periodObj->getYearMonth($this->_lastPeriodNum);
- } else {
- $this->_lastPeriodYear = 0;
- $this->_lastPeriodMonth = 0;
- $this->_lastPeriodYearMonth = 0;
- }
- $this->_cfTotalPercent = CalcCache::getCFTotalPercent($this->_periodNum);
- $this->_lxTotalPercent = CalcCache::getLXTotalPercent($this->_periodNum);
- $this->_pvRatio = $this->_sysConfig['pvRatio']['VALUE'];
- if($perfCompany = PerfCompany::findOne(['CALC_MONTH' => $this->_calcYearMonth])){
- $this->_companyMonthPerf = $perfCompany['PV'];
- }
- }
- /**
- * 设置结算状态
- * @param $type
- * start|end|fail
- */
- public function setCalcStatus($type) {
- if ($type == 'start') {
- Period::updateAll(['IS_CALCING' => 1, 'IS_CALCULATED' => Period::CALCULATE_NONE, 'CALCULATE_STARTED_AT' => Date::nowTime()], 'PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum]);
- } elseif ($type == 'end') {
- Period::updateAll(['IS_CALCING' => 0, 'IS_CALCULATED' => Period::CALCULATE_FINISH, 'CALCULATED_AT' => Date::nowTime()], 'PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum]);
- } elseif ($type == 'fail') {
- Period::updateAll(['IS_CALCING' => 0, 'IS_CALCULATED' => Period::CALCULATE_FAIL, 'CALCULATED_AT' => 0], 'PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum]);
- }
- }
- /**
- * 清空相关表数据
- */
- public function clearCalcTableData() {
- // 奖金表
- CalcBonus::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusQY::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusBD::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusTG::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusYJ::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusGX::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusGL::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- // 月结时要清空的数据
- if ($this->_isCalcMonth) {
- CalcBonusYC::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusVIP::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusStandard::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- ScoreMonth::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusTourism::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusGarage::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- CalcBonusVilla::pageDeleteAll('PERIOD_NUM='.$this->_periodNum);
- }
- }
- /**
- * === 奖金结算部分 ===
- */
- /**
- * 服务奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBD(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasBDUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- $decInfo = CalcCache::getBDUsersInfo($userId, $this->_periodNum);
- if( !$decInfo ) continue;
- //服务奖使用报单原金额
- $decBonus = Tool::formatPrice($decInfo['DEC_AMOUNT'] * $this->_sysConfig['decPercent']['VALUE'] / 100);
- if ($decBonus <= 0) continue;
- $bonusUserId = $decInfo['DEC_ID'];
- if( !$bonusUserId ) continue;
- // 获取会员的报单级别
- $bonusUserInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //总金额限制
- $decBonus = $this->bonusTotalLimit($decBonus, $bonusUserId, $bonusUserInfo['REC_NUM'], $bonusUserInfo['ZC_AMOUNT']);
- if( $decBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $decBonus);
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_BD', $decBonus, $deductData);
- //来源会员信息
- $fromUserInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //服务奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $fromUserInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $fromUserInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $fromUserInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'ORI_BONUS' => $decBonus,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'decInfoArr' => $decInfo,
- 'decPercentConfig' => $this->_sysConfig['decPercent']['VALUE'],
- 'recNum' => $bonusUserInfo['REC_NUM'],
- 'decAmount' => $bonusUserInfo['ZC_AMOUNT'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($decInfo, $decBonus, $bonusUserId, $bonusUserInfo, $userId, $deductData, $fromUserInfo);
- }
- CalcBonusBD::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusBD($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 推广奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusTG(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- if( !$perfData ) continue;
- //个人业绩都算推荐奖,包括报单和复消、二次购物
- $perfPv = $perfData['PV_PCS_ZC'] ?? 0;
- if( $perfPv <= 0 ) continue;
- //推广奖使用个人PCS
- $recBonus = Tool::formatPrice($perfPv * $this->_sysConfig['recPercent']['VALUE'] / 100);
- if ($recBonus <= 0) continue;
- // 把对碰后的奖金存入缓存中
- $perfUserInfo = CalcCache::getUserInfo($userId, $periodNum);
- $bonusUserId = $perfUserInfo['REC_UID'] ?? '';
- if( !$bonusUserId ) continue;
- // 获取会员的报单级别
- $userBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //判断级别上限
- // $recBonus = $this->declarationLevelCap($recBonus, $bonusUserId, $userBaseInfo['DEC_LV']);
- // if( $recBonus <= 0 ) continue;
- $recBonus = $this->bonusTotalLimit($recBonus, $bonusUserId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $recBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $recBonus);
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_TG', $recBonus, $deductData);
- //来源会员信息
- $fromUserInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //推广奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $fromUserInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $fromUserInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $fromUserInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $recBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'perfPv' => $perfPv,
- 'recPercentConfig' => $this->_sysConfig['recPercent']['VALUE'],
- 'recNum' => $userBaseInfo['REC_NUM'],
- 'decAmount' => $userBaseInfo['ZC_AMOUNT'],
- 'decLevel' => $userBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($perfData, $perfPv, $perfUserInfo, $recBonus, $bonusUserId, $userBaseInfo, $userId, $deductData, $fromUserInfo);
- }
- CalcBonusTG::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusTG($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 消费奖-推荐人
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusXFToRec(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- if( !$perfData ) continue;
- //个人业绩都算推荐奖,包括报单和复消、二次购物
- $perfPv = $perfData['PV_PCS_FX'] ?? 0;
- if( $perfPv <= 0 ) continue;
- //推广奖使用个人PCS
- $recBonus = Tool::formatPrice($perfPv * $this->_sysConfig['consumeRecPercent']['VALUE'] / 100);
- if ($recBonus <= 0) continue;
- // 把对碰后的奖金存入缓存中
- $perfUserInfo = CalcCache::getUserInfo($userId, $periodNum);
- $bonusUserId = $perfUserInfo['REC_UID'] ?? '';
- if( !$bonusUserId ) continue;
- // 获取会员的报单级别
- $userBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //判断级别上限
- // $recBonus = $this->declarationLevelCap($recBonus, $bonusUserId, $userBaseInfo['DEC_LV']);
- // if( $recBonus <= 0 ) continue;
- $recBonus = $this->bonusTotalLimit($recBonus, $bonusUserId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $recBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $recBonus);
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_XF', $recBonus, $deductData);
- //来源会员信息
- $fromUserInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //推广奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $fromUserInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $fromUserInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $fromUserInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $recBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'perfPv' => $perfPv,
- 'recPercentConfig' => $this->_sysConfig['consumeRecPercent']['VALUE'],
- 'recNum' => $userBaseInfo['REC_NUM'],
- 'decAmount' => $userBaseInfo['ZC_AMOUNT'],
- 'decLevel' => $userBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($perfData, $perfPv, $perfUserInfo, $recBonus, $bonusUserId, $userBaseInfo, $userId, $deductData, $fromUserInfo);
- }
- CalcBonusXF::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusXFToRec($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 消费奖-自己
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusXFToSelf(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- if( !$perfData ) continue;
- //个人业绩都算推荐奖,包括报单和复消、二次购物
- $perfPv = $perfData['PV_PCS_FX'] ?? 0;
- if( $perfPv <= 0 ) continue;
- //推广奖使用个人PCS
- $recBonus = Tool::formatPrice($perfPv * $this->_sysConfig['consumeSelfPercent']['VALUE'] / 100);
- if ($recBonus <= 0) continue;
- // 把对碰后的奖金存入缓存中
- // $perfUserInfo = CalcCache::getUserInfo($userId, $periodNum);
- $bonusUserId = $userId;
- if( !$bonusUserId ) continue;
- // 获取会员的报单级别
- $userBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //判断级别上限
- // $recBonus = $this->declarationLevelCap($recBonus, $bonusUserId, $userBaseInfo['DEC_LV']);
- // if( $recBonus <= 0 ) continue;
- $recBonus = $this->bonusTotalLimit($recBonus, $bonusUserId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $recBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $recBonus);
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_XF', $recBonus, $deductData);
- //来源会员信息
- $fromUserInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //推广奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $fromUserInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $fromUserInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $fromUserInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $recBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'perfPv' => $perfPv,
- 'recPercentConfig' => $this->_sysConfig['consumeSelfPercent']['VALUE'],
- 'recNum' => $userBaseInfo['REC_NUM'],
- 'decAmount' => $userBaseInfo['ZC_AMOUNT'],
- 'decLevel' => $userBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($perfData, $perfPv, $recBonus, $bonusUserId, $userBaseInfo, $userId, $deductData, $fromUserInfo);
- }
- CalcBonusXF::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusXFToSelf($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 服务奖第一步
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBDStepOne(int $offset = 0) {
- echo sprintf("时间:[%s]服务奖第【1】步,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- if( !$perfData ) continue;
- //
- $decRoleBonusFrom = explode(',', $this->_sysConfig['decRoleBonusFrom']['VALUE']);
- $validPvPcs = 0;
- foreach ($decRoleBonusFrom as $orderType) {
- $orderTypeName = sprintf('PV_PCS_%s', $orderType);
- $orderTypeValue = $perfData[$orderTypeName] ?? 0;
- $coefficientName = self::ORDER_TYPE_TO_FW_COEFFICIENT[$orderType];
- $coefficient = $this->_sysConfig[$coefficientName]['VALUE'] ?? 1;
- $validPvPcs += $orderTypeValue * $coefficient;
- unset($orderType, $orderTypeName, $orderTypeValue, $coefficientName, $coefficient);
- }
- unset($perfData, $decRoleBonusFrom);
- if ( $validPvPcs <= 0 ) continue;
- $this->loopRelationParentDo($userId, function ($parent) use($userId, $validPvPcs){
- //判断parent的报单中心级别 和 服务奖比例
- $bonusUserId = $parent['PARENT_UID'];
- //计算级别之后更新过userInfo的缓存,缓存中级别发生了变化
- $bonusUserInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $isDec = $bonusUserInfo['IS_DEC'];
- if($isDec == 0) return self::LOOP_CONTINUE;
- $decRoleId = $bonusUserInfo['DEC_ROLE_ID'];
- if( !$decRoleId ) return self::LOOP_CONTINUE;
- if( !isset($this->_decRoleConfig[$decRoleId]) ) return self::LOOP_CONTINUE;
- $parentDecRoleLevel = $this->_decRoleConfig[$decRoleId];
- $parentFwBonusPercent = $parentDecRoleLevel['FW_BONUS_PERCENT'] ?? 0;
- $cacheMaxPercent = CalcCache::fwMaxBonusPercent($userId, $this->_periodNum);
- $diffPercent = $parentFwBonusPercent - $cacheMaxPercent;
- if( $diffPercent <= 0 ) return self::LOOP_CONTINUE;
- $fwBonus = $validPvPcs * $diffPercent / 100;
- if( $fwBonus <= 0 ) return self::LOOP_CONTINUE;
- //给本人添加服务奖比例
- CalcCache::fwMaxBonusPercent($userId, $this->_periodNum, $parentFwBonusPercent);
- //记录奖金和奖金来源到缓存 并实现在缓存中奖金累加
- CalcCache::saveFwBonusList($bonusUserId, $this->_periodNum, $fwBonus, ['fromUid'=>$userId, 'fromPvPcs'=>$validPvPcs]);
- CalcCache::addHasFwBonusUsers($bonusUserId, $this->_periodNum);
- //达到最大的比例就不在向上找了
- // if( $parentFwBonusPercent >= $maxLevelPercent ) return self::LOOP_FINISH;
- unset($bonusUserId, $bonusUserInfo, $isDec, $decRoleId, $parentDecRoleLevel, $parentFwBonusPercent, $cacheMaxPercent, $diffPercent, $fwBonus);
- });
- unset($userId, $validPvPcs);
- }
- unset($allData, $insertBonusData);
- return $this->calcBonusBDStepOne($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 服务奖第二步
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBDStepTwo(int $offset = 0) {
- echo sprintf("时间:[%s]服务奖第【2】步,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $allData = CalcCache::getHasFwBonusUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- $fwBonusData = CalcCache::getFwBonusList($userId, $this->_periodNum);
- if( !$fwBonusData ) continue;
- $fwBonus = $fwBonusData['fwBonus'] ?? 0;
- if( $fwBonus <=0 ) continue;
- //总金额限制
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $fwBonus = $this->bonusTotalLimit($fwBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $fwBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- // $deductData = $this->deduct($userId, $fwBonus);
- CalcCache::bonus($userId, $this->_periodNum, 'BONUS_BD', $fwBonus);
- $decRoleId = $userBaseInfo['DEC_ROLE_ID'];
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $fwBonus,
- 'ORI_BONUS' => $fwBonus,
- 'RECONSUME_POINTS' => 0,
- 'MANAGE_TAX' => 0,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'decRoleId' => $decRoleId,
- ])
- // 'FROM_DATA' => json_encode($ycBonusData['fromData']),
- ];
- unset($userId, $fwBonusData, $userBaseInfo, $decRoleId, $fwBonus);
- }
- CalcBonusBD::batchInsert($insertBonusData);
- unset($insertBonusData, $allData);
- $this->calcBonusBDStepTwo($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 报单业绩奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBdYJ(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- foreach ($allData as $userId) {
- $insertBonusData = [];
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- if( !$perfData ) continue;
- //个人业绩都算见点奖,包括报单和复消、二次购物
- $perfPv = $perfData['PV_PCS_ZC'] ?? 0;
- if( $perfPv <= 0 ) continue;
- //业绩奖使用报单PV
- // $oriPointsBonus = Tool::formatPrice($perfPv * $this->_sysConfig['pointsPercent']['VALUE'] / 100);
- // if ($oriPointsBonus <= 0) continue;
- //偶数层数
- $pointsEvenLayer = $this->_sysConfig['pointsLayer']['VALUE'];
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $userEmpLevel = $userBaseInfo['EMP_LV'];
- $netWorkParents = Cache::getAllNetworkParents($userId);
- foreach ($netWorkParents as $netWorkParent) {
- // $pointsBonus = $oriPointsBonus;
- //自已距顶端的深度减去父级距顶端的深度
- $diffLayer = $netWorkParent['TOP_DEEP'] - $netWorkParent['PARENT_DEEP'];
- if( $diffLayer <= 0) continue;
- if( $diffLayer > 2 * $pointsEvenLayer ) continue;
- if( $diffLayer % 2 == 1 ) continue;
- $pointsPercentName = sprintf('pointsPercent_%d', $diffLayer);
- if( isset($this->_sysConfig[$pointsPercentName]['VALUE']) ) {
- $diffLayerPercent = $this->_sysConfig[$pointsPercentName]['VALUE'];
- }else {
- $diffLayerPercent = $this->_sysConfig['pointsPercent']['VALUE'];
- }
- $pointsBonus = Tool::formatPrice($perfPv * $diffLayerPercent / 100);
- if( $pointsBonus <= 0 ) continue;
- // 把对碰后的奖金存入缓存中
- $bonusUserId = $netWorkParent['PARENT_UID'];
- if( !$bonusUserId ) continue;
- // 获取会员的报单级别
- $bonusUserBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //判断上限 包括级别奖金上限和总上限
- // $pointsBonus = $this->declarationLevelCap($pointsBonus, $bonusUserId, $bonusUserBaseInfo['DEC_LV']);
- // if( $pointsBonus <= 0 ) continue;
- //总金额限制
- $pointsBonus = $this->bonusTotalLimit($pointsBonus, $bonusUserId, $bonusUserBaseInfo['REC_NUM'], $bonusUserBaseInfo['ZC_AMOUNT']);
- if( $pointsBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $pointsBonus);
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_YJ', $pointsBonus, $deductData, CalcCache::FROM_MEANS_BD);
- //业绩奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userEmpLevel,
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $pointsBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'perfPv' => $perfPv,
- 'pointsLayerConfig' => $this->_sysConfig['pointsLayer']['VALUE'],
- 'pointsPercentConfig' => $diffLayerPercent,
- 'recNum' => $bonusUserBaseInfo['REC_NUM'],
- 'decAmount' => $bonusUserBaseInfo['ZC_AMOUNT'],
- 'decLevel' => $bonusUserBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($netWorkParent, $pointsBonus, $diffLayer, $bonusUserId, $bonusUserBaseInfo, $deductData, $diffLayerPercent, $pointsPercentName);
- }
- CalcBonusYJ::batchInsert($insertBonusData);
- unset($insertBonusData, $userId, $perfData, $perfPv, $oriPointsBonus, $pointsEvenLayer, $userBaseInfo, $userEmpLevel, $netWorkParents);
- }
- unset($allData);
- return $this->calcBonusBdYJ($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 复消业绩奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusFxYJ(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- foreach ($allData as $userId) {
- $insertBonusData = [];
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- if( !$perfData ) continue;
- //个人业绩都算见点奖,包括报单和复消、二次购物
- $perfPv = $perfData['PV_PCS_FX'] ?? 0;
- if( $perfPv <= 0 ) continue;
- //业绩奖使用报单PV
- // $oriPointsBonus = Tool::formatPrice($perfPv * $this->_sysConfig['pointsPercent']['VALUE'] / 100);
- // if ($oriPointsBonus <= 0) continue;
- //偶数层数
- $pointsEvenLayer = $this->_sysConfig['fxPointsLayer']['VALUE'];
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $userEmpLevel = $userBaseInfo['EMP_LV'];
- $netWorkParents = Cache::getAllNetworkParents($userId);
- foreach ($netWorkParents as $netWorkParent) {
- // $pointsBonus = $oriPointsBonus;
- //自已距顶端的深度减去父级距顶端的深度
- $diffLayer = $netWorkParent['TOP_DEEP'] - $netWorkParent['PARENT_DEEP'];
- if( $diffLayer <= 0) continue;
- if( $diffLayer > 2 * $pointsEvenLayer ) continue;
- if( $diffLayer % 2 == 1 ) continue;
- $pointsPercentName = sprintf('fxPointsPercent_%d', $diffLayer);
- if( isset($this->_sysConfig[$pointsPercentName]['VALUE']) ) {
- $diffLayerPercent = $this->_sysConfig[$pointsPercentName]['VALUE'];
- }else {
- $diffLayerPercent = $this->_sysConfig['fxPointsPercent']['VALUE'];
- }
- $pointsBonus = Tool::formatPrice($perfPv * $diffLayerPercent / 100);
- if( $pointsBonus <= 0 ) continue;
- // 把对碰后的奖金存入缓存中
- $bonusUserId = $netWorkParent['PARENT_UID'];
- if( !$bonusUserId ) continue;
- // 获取会员的报单级别
- $bonusUserBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //判断上限 包括级别奖金上限和总上限
- // $pointsBonus = $this->declarationLevelCap($pointsBonus, $bonusUserId, $bonusUserBaseInfo['DEC_LV']);
- // if( $pointsBonus <= 0 ) continue;
- //总金额限制
- $pointsBonus = $this->bonusTotalLimit($pointsBonus, $bonusUserId, $bonusUserBaseInfo['REC_NUM'], $bonusUserBaseInfo['ZC_AMOUNT']);
- if( $pointsBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $pointsBonus);
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_YJ', $pointsBonus, $deductData, CalcCache::FROM_MEANS_FX);
- //业绩奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userEmpLevel,
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $pointsBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'perfPv' => $perfPv,
- 'pointsLayerConfig' => $this->_sysConfig['fxPointsLayer']['VALUE'],
- 'pointsPercentConfig' => $diffLayerPercent,
- 'recNum' => $bonusUserBaseInfo['REC_NUM'],
- 'decAmount' => $bonusUserBaseInfo['ZC_AMOUNT'],
- 'decLevel' => $bonusUserBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($netWorkParent, $pointsBonus, $diffLayer, $bonusUserId, $bonusUserBaseInfo, $deductData, $diffLayerPercent, $pointsPercentName);
- }
- CalcBonusYJ::batchInsert($insertBonusData);
- unset($insertBonusData, $userId, $perfData, $perfPv, $oriPointsBonus, $pointsEvenLayer, $userBaseInfo, $userEmpLevel, $netWorkParents);
- }
- unset($allData);
- return $this->calcBonusFxYJ($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 团队奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusQY(int $offset = 0) {
- echo sprintf("时间:[%s]团队奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- // 从缓存中获取会员的上期结余业绩信息
- $pervSurplusPerf = CalcCache::surplusPerf($userId, $periodNum);
- // 本期 + 上期结余
- $perfArr = [
- 'SURPLUS_1L' => $perfData['PV_1L_TOUCH'] + $pervSurplusPerf['SURPLUS_1L'],
- 'SURPLUS_2L' => $perfData['PV_2L_TOUCH'] + $pervSurplusPerf['SURPLUS_2L'],
- 'SURPLUS_3L' => $perfData['PV_3L_TOUCH'] + $pervSurplusPerf['SURPLUS_3L'],
- 'SURPLUS_4L' => $perfData['PV_4L_TOUCH'] + $pervSurplusPerf['SURPLUS_4L'],
- 'SURPLUS_5L' => $perfData['PV_5L_TOUCH'] + $pervSurplusPerf['SURPLUS_5L'],
- ];
- $oriPerfArr = [
- 'perfArr' => $perfArr,
- 'touchBonus' => 0,
- ];
- // 获取会员的报单级别
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $decLevelConfig = $this->_decLevelConfig;
- $nowDecLevelConfig = $decLevelConfig[$userBaseInfo['DEC_LV']];
- // 对碰
- $touchBonusArr = $this->touchPerf($oriPerfArr, $perfArr, $nowDecLevelConfig['QY_PERCENT']/100);
- $touchPerfArr = [];
- foreach ($touchBonusArr['perfArr'] as $keyR => $perfR) {
- $touchPerfArr[$keyR] = $perfR;
- }
- // 对碰完成后把结余的业绩存入本期业绩缓存中
- CalcCache::nowPeriodPerf($userId, $periodNum, $touchPerfArr);
- //更新数据库
- PerfPeriod::updateAll($touchPerfArr, 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM', [
- 'USER_ID' => $userId,
- 'PERIOD_NUM' => $periodNum,
- ]);
- if ($touchBonusArr['touchBonus'] <= 0) continue;
- $teamBonus = $touchBonusArr['touchBonus'];
- $capBonusQy = $teamBonus; // 封顶前的奖金
- //判断级别上限,个人奖金封顶限制
- $teamBonus = $this->declarationLevelCap($teamBonus, $userId, $userBaseInfo['DEC_LV']);
- if( $teamBonus <= 0 ) continue;
- // 将封顶前的金额加入用户奖金缓存中,此金额不能发放(总奖金,总实际奖金)
- CalcCache::bonus($userId, $periodNum, 'CAPPED_BONUS_QY', $capBonusQy);
- $teamBonus = $this->bonusTotalLimit($teamBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $teamBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($userId, $teamBonus);
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($userId, $periodNum, 'BONUS_QY', $teamBonus, $deductData);
- // TODO:取小腿值
- $payLeg = min([$perfArr['SURPLUS_1L'], $perfArr['SURPLUS_2L']]);
- // 计算荣衔星级
- $starCrown = StarCrownLevel::getStarCrown($payLeg);
- // 星级放入缓存
- CalcCache::addUserStartCrown($userId, $periodNum, $starCrown['ID']);
- //团队奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'ORI_CAPPED_BONUS_QY' => $capBonusQy,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STAR_LV' => $starCrown['ID'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $teamBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'perfArr' => $perfArr,
- 'touchPerfArrOri' => $touchBonusArr['perfArr'],
- 'touchPerfArr' => $touchPerfArr,
- 'nowDecLevelConfig' => $nowDecLevelConfig,
- 'decLevel' => $userBaseInfo['DEC_LV'],
- ]),
- ];
- unset($perfData, $pervSurplusPerf, $perfArr, $oriPerfArr, $touchPerfArr, $userBaseInfo, $decLevelConfig, $touchBonusArr, $userId, $nowDecLevelConfig, $teamBonus, $deductData);
- }
- CalcBonusQY::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusQY($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 报单团队奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBdQY(int $offset = 0) {
- echo sprintf("时间:[%s]报单团队奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- // 从缓存中获取会员的上期结余业绩信息
- $pervSurplusPerf = CalcCache::surplusPerf($userId, $periodNum);
- // 本期 + 上期结余
- $perfArr = [
- 'SURPLUS_1L_ZC' => $perfData['PV_1L_ZC'] + $pervSurplusPerf['SURPLUS_1L_ZC'],
- 'SURPLUS_2L_ZC' => $perfData['PV_2L_ZC'] + $pervSurplusPerf['SURPLUS_2L_ZC'],
- 'SURPLUS_3L_ZC' => $perfData['PV_3L_ZC'] + $pervSurplusPerf['SURPLUS_3L_ZC'],
- 'SURPLUS_4L_ZC' => $perfData['PV_4L_ZC'] + $pervSurplusPerf['SURPLUS_4L_ZC'],
- 'SURPLUS_5L_ZC' => $perfData['PV_5L_ZC'] + $pervSurplusPerf['SURPLUS_5L_ZC'],
- ];
- $oriPerfArr = [
- 'perfArr' => $perfArr,
- 'touchBonus' => 0,
- ];
- // 获取会员的报单级别
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $decLevelConfig = $this->_decLevelConfig;
- $nowDecLevelConfig = $decLevelConfig[$userBaseInfo['DEC_LV']];
- // 对碰
- $touchBonusArr = $this->touchPerf($oriPerfArr, $perfArr, $nowDecLevelConfig['QY_PERCENT']/100);
- $touchPerfArr = [];
- foreach ($touchBonusArr['perfArr'] as $keyR => $perfR) {
- $touchPerfArr[$keyR] = $perfR;
- }
- // 对碰完成后把结余的业绩存入本期业绩缓存中
- CalcCache::nowPeriodPerf($userId, $periodNum, $touchPerfArr);
- //更新数据库
- PerfPeriod::updateAll($touchPerfArr, 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM', [
- 'USER_ID' => $userId,
- 'PERIOD_NUM' => $periodNum,
- ]);
- if ($touchBonusArr['touchBonus'] <= 0) continue;
- $teamBonus = $touchBonusArr['touchBonus'];
- //判断级别上限
- // $teamBonus = $this->declarationLevelCap($teamBonus, $userId, $userBaseInfo['DEC_LV']);
- // if( $teamBonus <= 0 ) continue;
- // $teamBonus = $this->bonusTotalLimit($teamBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- // if( $teamBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- // $deductData = $this->deduct($userId, $teamBonus);
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($userId, $periodNum, 'BONUS_QY_BD', $teamBonus);
- unset($perfData, $pervSurplusPerf, $perfArr, $oriPerfArr, $touchPerfArr, $userBaseInfo, $decLevelConfig, $touchBonusArr, $userId, $nowDecLevelConfig, $teamBonus, $deductData);
- }
- unset($allData, $insertBonusData);
- return $this->calcBonusBdQY($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 复消团队奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusFxQY(int $offset = 0) {
- echo sprintf("时间:[%s]复消团队奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有业绩的会员信息
- $allData = CalcCache::getHasPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- // 从缓存中获取会员的业绩信息
- $perfData = CalcCache::nowPeriodPerf($userId, $periodNum);
- // 从缓存中获取会员的上期结余业绩信息
- $pervSurplusPerf = CalcCache::surplusPerf($userId, $periodNum);
- // 本期 + 上期结余
- $perfArr = [
- 'SURPLUS_1L_FX' => $perfData['PV_1L_FX'] + $pervSurplusPerf['SURPLUS_1L_FX'],
- 'SURPLUS_2L_FX' => $perfData['PV_2L_FX'] + $pervSurplusPerf['SURPLUS_2L_FX'],
- 'SURPLUS_3L_FX' => $perfData['PV_3L_FX'] + $pervSurplusPerf['SURPLUS_3L_FX'],
- 'SURPLUS_4L_FX' => $perfData['PV_4L_FX'] + $pervSurplusPerf['SURPLUS_4L_FX'],
- 'SURPLUS_5L_FX' => $perfData['PV_5L_FX'] + $pervSurplusPerf['SURPLUS_5L_FX'],
- ];
- $oriPerfArr = [
- 'perfArr' => $perfArr,
- 'touchBonus' => 0,
- ];
- // 获取会员的报单级别
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $decLevelConfig = $this->_decLevelConfig;
- $nowDecLevelConfig = $decLevelConfig[$userBaseInfo['DEC_LV']];
- // 对碰
- $touchBonusArr = $this->touchPerf($oriPerfArr, $perfArr, $nowDecLevelConfig['QY_PERCENT']/100);
- //大区封顶
- $touchPerfArr = [];
- foreach ($touchBonusArr['perfArr'] as $keyR => $perfR) {
- // if ($perfR > $nowDecLevelConfig['QY_BIG_CAP']) $perfR = $nowDecLevelConfig['QY_BIG_CAP'];
- $touchPerfArr[$keyR] = $perfR;
- }
- // 对碰完成后把结余的业绩存入本期业绩缓存中
- CalcCache::nowPeriodPerf($userId, $periodNum, $touchPerfArr);
- //更新数据库
- PerfPeriod::updateAll($touchPerfArr, 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM', [
- 'USER_ID' => $userId,
- 'PERIOD_NUM' => $periodNum,
- ]);
- if ($touchBonusArr['touchBonus'] <= 0) continue;
- $teamBonus = $touchBonusArr['touchBonus'];
- //判断级别上限
- // $teamBonus = $this->declarationLevelCap($teamBonus, $userId, $userBaseInfo['DEC_LV']);
- // if( $teamBonus <= 0 ) continue;
- //
- // $teamBonus = $this->bonusTotalLimit($teamBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- // if( $teamBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- // $deductData = $this->deduct($userId, $teamBonus);
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($userId, $periodNum, 'BONUS_QY_FX', $teamBonus);
- unset($perfData, $pervSurplusPerf, $perfArr, $oriPerfArr, $touchPerfArr, $userBaseInfo, $decLevelConfig, $touchBonusArr, $userId, $nowDecLevelConfig, $teamBonus, $deductData);
- }
- unset($allData, $insertBonusData);
- return $this->calcBonusFxQY($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 计算共享奖之前的操作
- * @param int $offset
- * @return bool
- */
- public function calcBonusGXBefore(int $offset = 0) {
- //获取所有激活会员
- $allData = CalcCache::getActiveUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- echo sprintf("时间:[%s]共享奖之前,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- foreach ($allData as $userId) {
- //判断$userId 能否得共享奖
- // //判断 是否本期小市场(安置关系)新增980pv 能否得奖
- // if ( !$this->checkSmallMarketPerf($userId) ) {
- // unset($userId);
- // continue;
- // }
- // 20220407 小市场980判断->改成判断此期用户是否有原报单团队奖金
- if ( !$this->checkHasOriBonusQyBd($userId) ) {
- unset($userId);
- continue;
- }
- //获取当前会员所有的推荐上级, 并查看是否有首单团队奖
- $validDeep = 0;
- $this->loopRelationParentDo($userId, function ($parent) use ($userId, &$validDeep) {
- //判断$parent是否有首单团队奖
- $parentBonus = CalcCache::bonus($parent['PARENT_UID'], $this->_periodNum);
- if( $parentBonus['ORI_BONUS_QY_BD'] > 0 ) {
- $validDeep += 1;
- //记录得奖缓存
- CalcCache::addShareBonusOneRelation($userId, $parent['PARENT_UID'], $this->_periodNum, $validDeep);
- }
- unset($parent, $parentBonus);
- if ( $validDeep >= 2 ) {
- return self::LOOP_FINISH;
- }
- });
- unset($userId, $validDeep);
- }
- unset($allData);
- return $this->calcBonusGXBefore($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 共享奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusGX(int $offset = 0) {
- // 从缓存获取分页有的会员信息
- $allData = CalcCache::getHasIncomeUsers($this->_periodNum, $offset, $this->_gxLimit);
- if ($allData) {
- echo sprintf("时间:[%s]共享奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $insertBonusData = [];
- // 获取线上找几层和是否开启找几层的限制
- $configsGx = Config::find()->where(
- 'CONFIG_NAME="gxNoPvFindLimitSwitch" OR CONFIG_NAME="gxNoPvFindLimitTimes"'
- )->orderBy('SORT ASC')->indexBy('CONFIG_NAME')->asArray()->all();
- $openFindLimit = isset($configsGx['gxNoPvFindLimitSwitch']) ? $configsGx['gxNoPvFindLimitSwitch']['VALUE'] : 1; // 是否开放了 得奖人不满足980就找一个满足980的人来得这个奖 的最大向上循环次数
- $findLimitTimes = isset($configsGx['gxNoPvFindLimitTimes']) ? $configsGx['gxNoPvFindLimitTimes']['VALUE'] : 5 ; // 开放的限制层数
- foreach ($allData as $userId) {
- $bonusUserData = [];
- $bonusPercentOne = $this->_sysConfig['shareRecPercent']['VALUE'] / 100;
- $bonusPercentTwo = $this->_sysConfig['sharePercent']['VALUE'] / 100;
- // 从缓存中获取会员的收入信息
- $incomeBonus = CalcCache::bonus($userId, $this->_periodNum);
- $lastTwoIncome = $incomeBonus['ORI_BONUS_QY_BD'] ?? 0;
- $shareBonusOne = $lastTwoIncome * $bonusPercentOne;
- unset($lastTwoIncome);
- //找到上2代 新增个人+推荐团队业绩 加权平均分配 这个奖
- if( $shareBonusOne > 0) {
- $bonusOneData = $this->gxLastTwoBonusData($userId, 1, $shareBonusOne);
- $bonusTwoData = $this->gxLastTwoBonusData($userId, 2, $shareBonusOne);
- $bonusUserData = array_merge($bonusUserData, $bonusOneData);
- $bonusUserData = array_merge($bonusUserData, $bonusTwoData);
- unset($bonusOneData, $bonusTwoData);
- }
- $nextFiveIncome = $incomeBonus['ORI_BONUS_QY_BD'] ?? 0;
- $shareBonusTwo = $nextFiveIncome * $bonusPercentTwo;
- unset($nextFiveIncome);
- //找到下5代(安置网) 紧缩 相对偶数层2、4、6、8、10层
- if( $shareBonusTwo > 0 ) {
- $validDeep = 1;
- $this->loopNetworkParentDo($userId, function ($parent) use ($userId, $shareBonusTwo, &$validDeep, &$bonusUserData) {
- if ( $validDeep % 2 === 0 ) {
- $bonusUserData[] = [
- 'bonusUid' => $parent['PARENT_UID'],
- 'bonus' => $shareBonusTwo,
- 'validMinPv' => true,
- ];
- }
- //判断$parent是否有首单团队奖
- $parentBonus = CalcCache::bonus($parent['PARENT_UID'], $this->_periodNum);
- if( $parentBonus['ORI_BONUS_QY_BD'] > 0 ) {//有效层
- $validDeep += 1;
- }
- unset($parent, $parentBonus);
- if ( $validDeep >= 11 ) {
- return self::LOOP_FINISH;
- }
- });
- unset($validDeep);
- }
- if ( !$bonusUserData ) continue;
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $userEmpLevel = $userBaseInfo['EMP_LV'];
- foreach ($bonusUserData as $bonusUserDataEvery) {
- $bonusUserId = $bonusUserDataEvery['bonusUid'];
- //判断 是否本期小市场(安置关系)新增980pv 能否得奖->20220407改成判断得奖人此期是否有报单团队奖金
- // if ( $bonusUserDataEvery['validMinPv'] && !$this->checkSmallMarketPerf($bonusUserId) ) { 20220407
- if ( $bonusUserDataEvery['validMinPv'] && !$this->checkHasOriBonusQyBd($bonusUserId) ) {
- // unset($bonusUserDataEvery, $bonusUserId);
- // continue;
- //得奖人不满足980就找一个满足980的人来得这个奖
- // 20220407改成判断得奖人此期是否有报单团队奖金,如果没有则找一个此期有报单团队奖金得人
- $bonusUserId = $this->getMinBdPvNetworkParent($bonusUserId, $openFindLimit, $findLimitTimes);
- if ( !$bonusUserId ) {
- unset($bonusUserDataEvery, $bonusUserId);
- continue;
- }
- }
- $bonus = Tool::formatPrice($bonusUserDataEvery['bonus']);
- $bonusUserBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- //总金额限制
- $bonus = $this->bonusTotalLimit($bonus, $bonusUserId, $bonusUserBaseInfo['REC_NUM'], $bonusUserBaseInfo['ZC_AMOUNT']);
- if( $bonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $bonus);
- CalcCache::bonus($bonusUserId, $this->_periodNum, 'BONUS_GX', $bonus, $deductData);
- CalcCache::addHasMonthBonusUsers($bonusUserId, $this->_periodNum);
- //共享奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userEmpLevel,
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $bonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'sharePercent' => $bonusPercentOne,
- 'incomeBonus' => $incomeBonus,
- 'recNum' => $userBaseInfo['REC_NUM'],
- 'decAmount' => $userBaseInfo['ZC_AMOUNT'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($bonusUserDataEvery, $bonusUserId, $bonus, $bonusUserBaseInfo, $deductData);
- }
- unset($userId, $bonusUserData, $userBaseInfo, $userEmpLevel, $bonusPercentOne, $bonusPercentTwo, $incomeBonus, $sharePerson);
- // echo ('内存使用:' . (round(memory_get_usage() / 1024 / 1024, 3)) . 'MB' . PHP_EOL);
- }
- if($insertBonusData) CalcBonusGX::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusGX($offset + $this->_gxLimit);
- }
- unset($allData);
- return true;
- }
- /**
- * 季度奖计算
- *
- */
- public function calcQuarter() {
- if( !$this->_isCalcMonth || !in_array($this->_calcMonth, [3,6,9,12])) {
- // 不是结算月,则不进行计算
- print_r('不是季结点,进这里,不计算季度奖');
- return false;
- }
- $result = \Yii::$app->db->createCommand("CALL QtrCalc(:periodNum)")
- ->bindValue(':periodNum' , $this->_periodNum )
- ->execute();
- return $result;
- }
- // 执行蓝星管理奖金的存储过程
- public function calcBsProcedure() {
- if( !$this->_isCalcMonth ) {
- // 不是结算月,则不进行计算
- return false;
- }
- $result = \Yii::$app->db->createCommand("CALL CalcBlue(:periodNum)")
- ->bindValue(':periodNum' , $this->_periodNum )
- ->execute();
-
- return $result;
- }
- // 执行旅游奖的计算
- public function calcBonusTourism() {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- $bonusConfig = $this->_sysConfig['openTourism'];
- // 达标条件:聘级、级别、奖项比例
- $config = json_decode($bonusConfig['OPTIONS'], true);
- // 奖金总比例
- $mate = $bonusConfig['VALUE'] / 100;
- // 会员级别
- $minDecLevel = $config['OPTIONS']['declarationLevel'] ?? [];
- // 月度公司总PV
- $monthTotalPV = PerfMonth::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])
- ->sum('PV_PCS');
- // 用于分发的奖金总数
- $transferAmount = $monthTotalPV * $mate;
- // 基于蓝星奖结果计算符合获奖条件的会员StarDirector
- $userStarDirector = CalcBonusBS::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])
- ->select('USER_ID,LEVEL_ID,LAST_DEC_LV,LAST_EMP_LV,LAST_STATUS')
- ->groupBy('USER_ID')
- ->asArray()
- ->all();
- $userStarDirectorObj = array_column($userStarDirector, NULL, 'USER_ID');
- // 基于团队奖/绩效奖结果计算会员的StarCrown
- $userStarCrown = CalcBonusQY::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])
- ->select('USER_ID,LAST_STAR_LV')
- ->groupBy('USER_ID')
- ->asArray()
- ->all();
- $userStarCrownObj = array_column($userStarCrown, NULL, 'USER_ID');
- // 合并用户ID,去重
- $bonusUsers = array_unique(array_merge(array_keys($userStarDirectorObj), array_keys($userStarCrownObj)));
- // 奖金点数综合
- $bonusPointComplex = 0;
- $insertBonusData = [];
- foreach($bonusUsers as $userId) {
- // 计算奖金:取starDirectorPoint和startCrownPoint的大个值
- $starDirectorPoint = $this->_empLevelConfig[$userStarDirectorObj[$userId]['LEVEL_ID']]['TOURISM_PERCENT'] ?? 0;
- $startCrownPoint = $this->_starCrownLevelConfig[$userStarCrownObj[$userId]['LAST_STAR_LV']]['TOURISM_PERCENT'] ?? 0;
- // 奖金比例:
- $bonusPoint = max($starDirectorPoint, $startCrownPoint);
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'LAST_DEC_LV' => $userStarDirectorObj[$userId]['LAST_DEC_LV'],
- 'LAST_EMP_LV' => $userStarDirectorObj[$userId]['LAST_EMP_LV'],
- 'LAST_STATUS' => $userStarDirectorObj[$userId]['LAST_STATUS'],
- 'LAST_STAR_LV' => $userStarCrownObj[$userId]['LAST_STAR_LV'],
- 'AMOUNT_STANDARD' => 0,
- 'POINT' => $bonusPoint,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'PERF' => $monthTotalPV,
- 'TRANSFER_RATE' => $mate,
- 'TRANSFER_AMOUNT' => Tool::formatPrice($transferAmount),
- 'CAP_AMOUNT' => 0,
- 'POINT_COMPLEX' => 0,
- ];
- $bonusPointComplex += $bonusPoint;
- }
- // 数据写入总表
- if ($insertBonusData) {
- foreach ($insertBonusData as &$bonusData) {
- // 计算奖金
- $amount = Tool::formatPrice($transferAmount * ($bonusData['POINT'] / $bonusPointComplex));
- if ($amount <= 0) {
- continue;
- }
- // 会员级别达到要求才会发放奖金
- if ($bonusData['LAST_DEC_LV'] == $minDecLevel) {
- // 放入缓存
- CalcCache::tourismBonus($bonusData['USER_ID'], $this->_periodNum, $amount);
- // 加入月奖的会员
- CalcCache::addHasMonthBonusUsers($bonusData['USER_ID'], $this->_periodNum);
- }
- $bonusData['AMOUNT'] = $amount;
- $bonusData['POINT_COMPLEX'] = $bonusPointComplex;
- }
- CalcBonusTourism::batchInsert($insertBonusData);
- }
- return true;
- }
- // 执行房奖的计算
- public function calcBonusVilla() {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- $bonusConfig = $this->_sysConfig['openVilla'];
- // 达标条件:聘级、级别、奖项比例
- $config = json_decode($bonusConfig['OPTIONS'], true);
- // 奖金总比例
- $mate = $bonusConfig['VALUE'] / 100;
- // 个人奖金封顶
- $capBonus = intval($this->_sysConfig['openVillaCap']['VALUE'] ?? 0);
- // 会员级别
- $minDecLevel = $config['declarationLevel'] ?? [];
- // 月度公司总PV
- $monthTotalPV = PerfMonth::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])
- ->sum('PV_PCS');
- // 用于分发的奖金总数
- $transferAmount = $monthTotalPV * $mate;
- // 基于团队奖/绩效奖结果计算会员的StarCrown.StarCrown基于周期计算,一个月会产生多次,取月周期中的最高星级
- $subQuery = CalcBonusQY::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH = :CALC_MONTH AND LAST_STAR_LV <> :NO_STAR_LV', [':CALC_MONTH' => $this->_calcYearMonth, ':NO_STAR_LV' => StarCrownLevel::NO_LEVEL_ID])
- ->select('USER_ID,LAST_DEC_LV,LAST_EMP_LV,LAST_STAR_LV,LAST_STATUS,LEVEL_NAME,SORT')
- ->joinWith(['starCrown' => function($query) {
- $query->select(['LEVEL_NAME', 'SORT']);
- }])
- ->having(1)
- ->orderBy('USER_ID ASC, SORT DESC');
- $userStarCrownObj = (new Query())->from(['u' => $subQuery])->select('USER_ID,LAST_DEC_LV,LAST_EMP_LV,LAST_STAR_LV,LAST_STATUS,LEVEL_NAME,SORT')->groupBy('USER_ID')->indexBy('USER_ID')->all();
- // 奖金点数综合
- $bonusPointComplex = 0;
- $insertBonusData = [];
- foreach($userStarCrownObj as $item) {
- // 奖金比例
- $bonusPoint = $this->_starCrownLevelConfig[$item['LAST_STAR_LV']]['VILLA_PERCENT'] ?? 0;
- if (!$bonusPoint) {
- continue;
- }
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $item['USER_ID'],
- 'LAST_DEC_LV' => $item['LAST_DEC_LV'],
- 'LAST_EMP_LV' => $item['LAST_EMP_LV'],
- 'LAST_STATUS' => $item['LAST_STATUS'],
- 'LAST_STAR_LV' => $item['LAST_STAR_LV'],
- 'AMOUNT' => 0,
- 'POINT' => $bonusPoint,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'PERF' => $monthTotalPV,
- 'TRANSFER_RATE' => $mate,
- 'TRANSFER_AMOUNT' => Tool::formatPrice($transferAmount),
- 'CAP_AMOUNT' => 0,
- 'POINT_COMPLEX' => 0,
- ];
- $bonusPointComplex += $bonusPoint;
- }
- // 数据写入总表
- if ($insertBonusData) {
- // 计算个人奖金
- foreach ($insertBonusData as &$bonusData) {
- // 计算奖金
- $amount = Tool::formatPrice($transferAmount * ($bonusData['POINT'] / $bonusPointComplex));
- if ($amount <= 0) {
- continue;
- }
- // 封顶前奖金数
- $capAmount = $amount;
- // 奖金数不能大于封顶值
- $amount = ($amount > $capBonus) ? $capBonus : $amount;
- // 会员级别达到要求才会发放奖金
- if ($bonusData['LAST_DEC_LV'] == $minDecLevel) {
- // 放入缓存
- CalcCache::villaBonus($bonusData['USER_ID'], $this->_periodNum, $amount);
- // 加入月奖的会员
- CalcCache::addHasMonthBonusUsers($bonusData['USER_ID'], $this->_periodNum);
- }
- $bonusData['AMOUNT'] = $amount;
- $bonusData['CAP_AMOUNT'] = $capAmount;
- $bonusData['POINT_COMPLEX'] = $bonusPointComplex;
- }
- CalcBonusVilla::batchInsert($insertBonusData);
- }
- return true;
- }
- // 执行车奖的计算
- public function calcBonusGarage() {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- $bonusConfig = $this->_sysConfig['openGarage'];
- // 达标条件:聘级、级别、奖项比例
- $config = json_decode($bonusConfig['OPTIONS'], true);
- // 奖金总比例
- $mate = $bonusConfig['VALUE'] / 100;
- // 会员级别
- $minDecLevel = $config['declarationLevel'] ?? [];
- // 个人奖金封顶
- $capBonus = intval($this->_sysConfig['openGarageCap']['VALUE'] ?? 0);
- // 月度公司总PV
- $monthTotalPV = PerfMonth::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])
- ->sum('PV_PCS');
- // 用于分发的奖金总数
- $transferAmount = $monthTotalPV * $mate;
- // 基于蓝星奖结果计算符合获奖条件的会员StarDirector
- $userStarDirector = CalcBonusBS::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH = :CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])
- ->select('USER_ID,LEVEL_ID,LAST_DEC_LV,LAST_EMP_LV,LAST_STATUS')
- ->groupBy('USER_ID')
- ->asArray()
- ->all();
- $userStarDirectorObj = array_column($userStarDirector, NULL, 'USER_ID');
- // 基于团队奖/绩效奖结果计算会员的StarCrown.StarCrown基于周期计算,一个月会产生多次,取月周期中的最高星级
- $subQuery = CalcBonusQY::find()
- ->yearMonth($this->_calcYearMonth)
- ->where('CALC_MONTH = :CALC_MONTH AND LAST_STAR_LV <> :NO_STAR_LV', [':CALC_MONTH' => $this->_calcYearMonth, ':NO_STAR_LV' => StarCrownLevel::NO_LEVEL_ID])
- ->select('USER_ID,LAST_DEC_LV,LAST_EMP_LV,LAST_STAR_LV,LAST_STATUS,LEVEL_NAME,SORT')
- ->joinWith(['starCrown' => function($query) {
- $query->select(['LEVEL_NAME', 'SORT']);
- }])
- ->having(1)
- ->orderBy('USER_ID ASC, SORT DESC');
- $userStarCrownObj = (new Query())->from(['u' => $subQuery])->select('USER_ID,LAST_DEC_LV,LAST_EMP_LV,LAST_STAR_LV,LAST_STATUS,LEVEL_NAME,SORT')->groupBy('USER_ID')->indexBy('USER_ID')->all();
-
- // 合并用户ID,去重
- $bonusUsers = array_unique(array_merge(array_keys($userStarDirectorObj), array_keys($userStarCrownObj)));
- sort($bonusUsers);
- // 奖金点数综合
- $bonusPointComplex = 0;
- $insertBonusData = [];
- foreach($bonusUsers as $userId) {
- // 计算奖金:取starDirectorPoint和startCrownPoint的大个值
- $starDirectorPoint = !isset($userStarDirectorObj[$userId]['LEVEL_ID']) ? 0 : ($this->_empLevelConfig[$userStarDirectorObj[$userId]['LEVEL_ID']]['GARAGE_PERCENT'] ?? 0);
- $startCrownPoint = !isset($userStarCrownObj[$userId]['LAST_STAR_LV']) ? 0: ($this->_starCrownLevelConfig[$userStarCrownObj[$userId]['LAST_STAR_LV']]['GARAGE_PERCENT'] ?? 0);
- // 奖金比例:
- $bonusPoint = max($starDirectorPoint, $startCrownPoint);
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'LAST_DEC_LV' => $userStarDirectorObj[$userId]['LAST_DEC_LV'] ?? ($userStarCrownObj[$userId]['LAST_DEC_LV'] ?? ''),
- 'LAST_EMP_LV' => $userStarDirectorObj[$userId]['LAST_EMP_LV'] ?? ($userStarCrownObj[$userId]['LAST_EMP_LV'] ?? ''),
- 'LAST_STATUS' => $userStarDirectorObj[$userId]['LAST_STATUS'] ?? ($userStarCrownObj[$userId]['LAST_STATUS'] ?? 1),
- 'LAST_STAR_LV' => $userStarCrownObj[$userId]['LAST_STAR_LV'] ?? '',
- 'AMOUNT' => 0,
- 'POINT' => $bonusPoint,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'PERF' => $monthTotalPV,
- 'TRANSFER_RATE' => $mate,
- 'TRANSFER_AMOUNT' => Tool::formatPrice($transferAmount),
- 'CAP_AMOUNT' => 0,
- 'POINT_COMPLEX' => 0,
- ];
- $bonusPointComplex += $bonusPoint;
- }
- // 数据写入总表
- if ($insertBonusData) {
- foreach ($insertBonusData as &$bonusData) {
- // 计算奖金
- $amount = Tool::formatPrice($transferAmount * ($bonusData['POINT'] / $bonusPointComplex));
- if ($amount <= 0) {
- continue;
- }
- // 封顶前奖金数
- $capAmount = $amount;
- // 奖金数不能大于封顶值
- $amount = ($amount > $capBonus) ? $capBonus : $amount;
- // 会员级别达到要求才会发放奖金
- if ($bonusData['LAST_DEC_LV'] == $minDecLevel) {
- // 放入缓存
- CalcCache::garageBonus($bonusData['USER_ID'], $this->_periodNum, $amount);
- // 加入月奖的会员
- CalcCache::addHasMonthBonusUsers($bonusData['USER_ID'], $this->_periodNum);
- }
- $bonusData['AMOUNT'] = $amount;
- $bonusData['CAP_AMOUNT'] = $capAmount;
- $bonusData['POINT_COMPLEX'] = $bonusPointComplex;
- }
- CalcBonusGarage::batchInsert($insertBonusData);
- }
- return true;
- }
- /**
- * 季度奖写用户缓存
- *
- */
- public function calcQuarterUser(int $offset = 0) {
- if( !$this->_isCalcMonth || !in_array($this->_calcMonth, [3,6,9,12])) {
- // 不是结算月,则不进行计算
- return false;
- }
- $allData = CalcBonusQuarter::finduseDbCalc()
- ->where('PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum])
- ->groupBy('USER_ID')
- ->offset($offset)
- ->limit($this->_limit)
- ->asArray()
- ->all();
- if ($allData){
- // 达标条件:会员级别:钻卡
- $config = json_decode($this->_sysConfig['openGL']['OPTIONS'], true);
- $minDecLevel = $config['mntDec'] ?? [];
- foreach ($allData as $user) {
- // 扣除相应的复消积分和管理费
- $deductData = $this->deduct($user['USER_ID'], $user['ORI_BONUS']);
- $realBonusBs = $deductData['surplus']; // 扣除管理费和复消积分后的实发蓝星奖金
- $manageTax = $deductData['manageTax']; // 管理费
- $point = $deductData['reConsumePoints'] + $user['RECONSUME_POINTS'];// 复消积分
- // 管理奖钻卡发放
- // if (in_array($user['LAST_DEC_LV'], $minDecLevel)) {
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($user['USER_ID'], $this->_periodNum, 'BONUS_QUARTER', $user['ORI_BONUS'], $deductData);
- // 加入月奖的会员
- CalcCache::addHasMonthBonusUsers($user['USER_ID'], $this->_periodNum);
- // }
- // 更新蓝星奖金存储过程的实发金额数据
- CalcBonusQuarter::updateAll([
- 'RECONSUME_POINTS' => $point,
- 'AMOUNT' => $realBonusBs,
- 'MANAGE_TAX' => $manageTax],
- 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [':USER_ID' => $user['USER_ID'], ':PERIOD_NUM' => $this->_periodNum]);
- }
- return $this->calcQuarterUser($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 蓝星管理奖金
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBsGL(int $offset = 0) {
- if( !$this->_isCalcMonth ) {
- // 不是结算月,则不进行计算
- return false;
- }
- // 从缓存获取分页有收入的会员信息
- $allData = CalcBonusBS::findUseDbCalc()
- ->where('PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum])
- ->groupBy('USER_ID')
- ->offset($offset)
- ->limit($this->_limit)
- ->asArray()
- ->all();
- if ($allData) {
- // 达标条件:会员级别:钻卡
- $config = json_decode($this->_sysConfig['openGL']['OPTIONS'], true);
- $minDecLevel = $config['mntDec'] ?? [];
- foreach ($allData as $user) {
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($user['USER_ID'], $user['ORI_BONUS_MNT']);
- $realBonusBs = $deductData['surplus']; // 扣除管理费和复消积分后的实发蓝星奖金
- $manageTax = $deductData['manageTax']; // 管理费
- $point = $deductData['reConsumePoints'] + $user['RECONSUME_POINTS'];// 复消积分
- // 管理奖钻卡发放
- // if (in_array($user['LAST_DEC_LV'], $minDecLevel)) {
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($user['USER_ID'], $this->_periodNum, 'BONUS_BS_MNT', $user['ORI_BONUS_MNT'], $deductData);
- // 加入月奖的会员
- CalcCache::addHasMonthBonusUsers($user['USER_ID'], $this->_periodNum);
- // }
- // 更新蓝星奖金存储过程的实发金额数据
- CalcBonusBS::updateAll([
- 'RECONSUME_POINTS' => $point,
- 'AMOUNT_MNT' => $realBonusBs,
- 'MANAGE_TAX_MNT' => $manageTax],
- 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [':USER_ID' => $user['USER_ID'], ':PERIOD_NUM' => $this->_periodNum]);
- }
- return $this->calcBonusBsGL($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 蓝星业绩奖金
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBsYJ(int $offset = 0) {
- if( !$this->_isCalcMonth ) {
- // 不是结算月,则不进行计算
- return false;
- }
- // 从缓存获取分页有收入的会员信息
- $allData = CalcBonusBS::findUseDbCalc()
- ->where('PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum])
- ->groupBy('USER_ID')
- ->offset($offset)
- ->limit($this->_limit)
- ->asArray()
- ->all();
- if ($allData) {
- // 达标条件:会员级别:金卡、钻卡
- $config = json_decode($this->_sysConfig['openGL']['OPTIONS'], true);
- $minDecLevel = $config['abbrDec'] ?? [];
- foreach ($allData as $user) {
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($user['USER_ID'], $user['ORI_BONUS_ABBR']);
- $realBonusBs = $deductData['surplus']; // 扣除管理费和复消积分后的实发蓝星奖金
- $manageTax = $deductData['manageTax']; // 管理费
- $point = $deductData['reConsumePoints'] + $user['RECONSUME_POINTS'];// 复消积分
- // 业绩奖金卡、钻卡发放
- // if (in_array($user['LAST_DEC_LV'], $minDecLevel)) {
- // 把对碰后的奖金存入缓存中
- CalcCache::bonus($user['USER_ID'], $this->_periodNum, 'BONUS_BS_ABBR', $user['ORI_BONUS_ABBR'], $deductData);
- // 加入月奖的会员
- CalcCache::addHasMonthBonusUsers($user['USER_ID'], $this->_periodNum);
- // }
- // 更新蓝星业绩奖金存储过程的实发金额数据
- CalcBonusBS::updateAll([
- 'AMOUNT_ABBR' => $realBonusBs,
- 'MANAGE_TAX_ABBR' => $manageTax,
- 'RECONSUME_POINTS' => $point],
- 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [':USER_ID' => $user['USER_ID'], ':PERIOD_NUM' => $this->_periodNum]);
- }
- return $this->calcBonusBsYJ($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 报单管理奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusBdGL(int $offset = 0) {
- // 从缓存获取分页有收入的会员信息
- $allData = CalcCache::getHasIncomeUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- $bonusUserData = [];
- //会员信息
- $validDeep = 1;
- $this->loopRelationParentDo($userId, function ($parent) use ($userId, &$validDeep, &$bonusUserData) {
- //判断$parent是否有首单团队奖
- $bonusUserId = $parent['PARENT_UID'];
- $bonusUserBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $nowDecLevelConfig = $this->_decLevelConfig[$bonusUserBaseInfo['DEC_LV']];
- $recNum = $bonusUserBaseInfo['REC_NUM'];
- if( $recNum <= 0 ) {
- $maxOddLayer = 0;
- }else if( $recNum == 1 ) {
- $maxOddLayer = $nowDecLevelConfig['GL_ODD_DEEP_ONE'] ?? 0;
- }else if( $recNum == 2 ) {
- $maxOddLayer = $nowDecLevelConfig['GL_ODD_DEEP_TWO'] ?? 0;
- }else {
- $maxOddLayer = $nowDecLevelConfig['GL_ODD_DEEP_THREE'] ?? 0;
- }
- if ( $validDeep < 2 * $maxOddLayer && $validDeep % 2 === 1 ) {//奇数层
- $bonusUserData[] = [
- 'bonusUid' => $parent['PARENT_UID'],
- 'validDeep' => $validDeep
- ];
- }
- $parentBonus = CalcCache::bonus($bonusUserId, $this->_periodNum);
- if( $parentBonus['ORI_BONUS_QY_BD'] > 0 ) {//有效层
- $validDeep += 1;
- }
- unset($parent, $parentBonus, $bonusUserId, $bonusUserBaseInfo, $nowDecLevelConfig, $recNum, $maxOddLayer);
- //超过代数上限则结束
- if ( $validDeep >= 18 ) {
- return self::LOOP_FINISH;
- }
- });
- //发奖
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $userBonus = CalcCache::bonus($userId, $this->_periodNum);
- foreach ($bonusUserData as $everyData) {
- $bonusUserId = $everyData['bonusUid'];
- //判断 是否本期小市场(安置关系)新增980pv 能否得奖
- if ( !$this->checkSmallMarketPerf($bonusUserId) ) {
- // unset($bonusUserId);
- // continue;
- //得奖人不满足980就找一个满足980的人来得这个奖
- $bonusUserId = $this->getMinBdPvRelationParent($bonusUserId);
- if ( !$bonusUserId ) {
- unset($bonusUserId);
- continue;
- }
- }
- $parentOddPercentValue = floor($everyData['validDeep']/6);
- $parentOddPercentName = sprintf('parentOddPercent_%s', $parentOddPercentValue);
- if( !isset($this->_sysConfig[$parentOddPercentName]) ) continue;
- $bonusPercent = $this->_sysConfig[$parentOddPercentName]['VALUE'];
- $manageBonus = Tool::formatPrice($userBonus['ORI_BONUS_QY_BD'] * $bonusPercent / 100);
- if ($manageBonus <= 0) continue;
- //总金额限制
- $bonusUserBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $recNum = $bonusUserBaseInfo['REC_NUM'];
- $manageBonus = $this->bonusTotalLimit($manageBonus, $bonusUserId, $recNum, $bonusUserBaseInfo['ZC_AMOUNT']);
- if( $manageBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $manageBonus);
- // 钻卡会员奖金记入缓存
- $decLevelConfig = $this->_decLevelConfig;
- $nowDecLevelConfig = $decLevelConfig[$userBaseInfo['DEC_LV']];
- if ($nowDecLevelConfig == '67ABCE0ECE705575E055736AECE8644D') {
- CalcCache::bonus($bonusUserId, $this->_periodNum, 'BONUS_GL', $manageBonus, $deductData, CalcCache::FROM_MEANS_BD);
- CalcCache::addHasMonthBonusUsers($bonusUserId, $this->_periodNum);
- }
- //管理奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $manageBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- $parentOddPercentName => $this->_sysConfig[$parentOddPercentName]['VALUE'],
- 'validDeep' => $everyData['validDeep'],
- 'recNum' => $bonusUserBaseInfo['REC_NUM'],
- 'decAmount' => $bonusUserBaseInfo['ZC_AMOUNT'],
- 'fromUserId' => $userId,
- 'decLevel' => $bonusUserBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($everyData, $bonusUserId, $parentOddPercentValue, $parentOddPercentName, $bonusPercent, $manageBonus, $deductData);
- }
- unset($userId, $validDeep, $userBaseInfo, $userBonus, $bonusUserData);
- }
- if($insertBonusData) CalcBonusGL::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusBdGL($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 复消管理奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusFxGL(int $offset = 0) {
- $periodNum = $this->_periodNum;
- // 从缓存获取分页有收入的会员信息
- $allData = CalcCache::getHasIncomeUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- //会员信息
- $decLevelConfig = $this->_decLevelConfig;
- $netWorkParents = Cache::getAllRelationParents($userId);
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $userEmpLevel = $userBaseInfo['EMP_LV'];
- foreach ($netWorkParents as $netWorkParent) {
- //自已距顶端的深度减去父级距顶端的深度
- $diffLayer = $netWorkParent['TOP_DEEP'] - $netWorkParent['PARENT_DEEP'];
- if( $diffLayer <= 0) continue;
- //@todo 超过最大代数就跳出本次循环
- //偶数代跳过
- if( $diffLayer % 2 == 0 ) continue;
- // 获取会员的报单级别
- $bonusUserId = $netWorkParent['PARENT_UID'];
- if( !$bonusUserId ) continue;
- $bonusUserBaseInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $nowDecLevelConfig = $decLevelConfig[$bonusUserBaseInfo['DEC_LV']];
- if( !$nowDecLevelConfig ) continue;
- //推荐人数
- $recNum = $bonusUserBaseInfo['REC_NUM'];
- if( $recNum <= 0 ) continue;
- if( $recNum == 1 ) {
- $maxOddLayer = $nowDecLevelConfig['GL_ODD_DEEP_ONE'];
- }else if( $recNum == 2 ) {
- $maxOddLayer = $nowDecLevelConfig['GL_ODD_DEEP_TWO'];
- }else {
- $maxOddLayer = $nowDecLevelConfig['GL_ODD_DEEP_THREE'];
- }
- //超过代数上限也跳过
- if( $diffLayer >= 2 * $maxOddLayer ) continue;
- // $everyLayer = floor(2 * $nowDecLevelConfig['GL_ODD_DEEP_THREE'] / $nowDecLevelConfig['SORT']);
- //多少代
- // $theLayer = $diffLayer % $everyLayer;
- // $theLayerLevel = floor($diffLayer/$everyLayer);
- $theLayerLevel = floor($diffLayer/6);
- $parentOddPercentName = sprintf('parentOddPercent_%s', $theLayerLevel);
- if( !isset($this->_sysConfig[$parentOddPercentName]) ) continue;
- $bonusPercent = $this->_sysConfig[$parentOddPercentName]['VALUE'];
- // 从缓存中获取会员的收入信息
- $incomeBonus = CalcCache::bonus($userId, $periodNum);
- $parentOddIncomeFromName = sprintf('parentOddIncomeFrom_%s', $theLayerLevel);
- $parentOddIncomeFrom = explode(',', $this->_sysConfig[$parentOddIncomeFromName]['VALUE']);
- $parentOddIncome = 0;
- foreach ($parentOddIncomeFrom as $incomeType) {
- if( $incomeType === 'XF' ) {
- $incomeTypeName = sprintf('ORI_BONUS_%s', $incomeType);
- }else {
- $incomeTypeName = sprintf('ORI_BONUS_%s_FX', $incomeType);
- }
- $incomeTypeValue = $incomeBonus[$incomeTypeName] ?? 0;
- $parentOddIncome += $incomeTypeValue;
- unset($incomeType, $incomeTypeName, $incomeTypeValue);
- }
- unset($parentOddIncomeFrom);
- $manageBonus = Tool::formatPrice($parentOddIncome * $bonusPercent / 100);
- if ($manageBonus <= 0) continue;
- //总金额限制
- $manageBonus = $this->bonusTotalLimit($manageBonus, $bonusUserId, $recNum, $bonusUserBaseInfo['ZC_AMOUNT']);
- if( $manageBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($bonusUserId, $manageBonus);
- CalcCache::bonus($bonusUserId, $periodNum, 'BONUS_GL', $manageBonus, $deductData, CalcCache::FROM_MEANS_FX);
- //管理奖流水
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userEmpLevel,
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $manageBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- $parentOddPercentName => $this->_sysConfig[$parentOddPercentName]['VALUE'],
- $parentOddIncomeFromName => $this->_sysConfig[$parentOddIncomeFromName]['VALUE'],
- 'decLevelConfig' => $nowDecLevelConfig,
- 'recNum' => $bonusUserBaseInfo['REC_NUM'],
- 'decAmount' => $bonusUserBaseInfo['ZC_AMOUNT'],
- 'fromUserId' => $userId,
- 'decLevel' => $bonusUserBaseInfo['DEC_LV'],
- 'bonusTotalLimit' => [
- $this->_sysConfig['bonusTotalZeroLimit']['VALUE'],
- $this->_sysConfig['bonusTotalOneLimit']['VALUE'],
- $this->_sysConfig['bonusTotalTwoLimit']['VALUE'],
- ],
- ]),
- ];
- unset($netWorkParent, $diffLayer, $bonusUserId, $bonusUserBaseInfo, $bonusPercent, $nowDecLevelConfig, $manageBonus, $incomeBonus, $maxOddLayer, $theLayerLevel, $recNum, $parentOddPercentName, $parentOddIncomeFromName, $deductData);
- }
- unset($userId, $userBaseInfo, $userEmpLevel, $netWorkParents, $decLevelConfig);
- }
- CalcBonusGL::batchInsert($insertBonusData);
- unset($allData, $insertBonusData);
- return $this->calcBonusFxGL($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 结算荣衔奖第一步
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- * @throws \Exception
- */
- public function calcBonusYCStepOne(int $offset = 0) {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- echo sprintf("时间:[%s]荣衔奖第【1】步,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- //从缓存获取分页有本月业绩的会员
- $allData = CalcCache::getHasMonthPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $maxLevelId = EmployLevel::SHX_ZJ_LEVEL_ID;
- $maxLevel = $this->_empLevelConfig[$maxLevelId];
- $maxLevelPercent = $maxLevel['RX_PERCENT'] ?? 0;
- unset($maxLevelId, $maxLevel);
- foreach ($allData as $userId) {
- // echo sprintf("时间:[%s]荣衔奖,当前用户ID为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $userId);
- $nowMonthPerf = CalcCache::nowMonthPerf($userId, $this->_periodNum);
- $monthPvPcs = $nowMonthPerf['PV_PCS'] ?? 0;
- if( $monthPvPcs <= 0 ) continue;
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //个人业绩的奖金
- $empLevelId = $userBaseInfo['EMP_LV'];
- $empLevel = $this->_empLevelConfig[$empLevelId];
- $rxPercent = $empLevel['RX_PERCENT'] ?? 0;
- $empBonus = $monthPvPcs * $rxPercent / 100;
- if( $empBonus > 0 ) {
- //给本人添加聘级比例
- CalcCache::ycMaxBonusPercent($userId, $this->_periodNum, $rxPercent);
- //记录奖金和奖金来源到缓存 并实现在缓存中奖金累加
- CalcCache::saveYCBonusList($userId, $this->_periodNum, $empBonus, ['fromUid'=>$userId, 'fromPvPcs'=>$monthPvPcs]);
- CalcCache::addHasYcBonusUsers($userId, $this->_periodNum);
- //达到最大的比例其它人就得不到了
- if( $rxPercent >= $maxLevelPercent ) continue;
- }
- unset($empLevelId, $empLevel, $rxPercent, $empBonus);
- //获取所有的父级
- $this->loopRelationParentDo($userId, function ($parent) use ($userId, $monthPvPcs, $maxLevelPercent) {
- $bonusUserId = $parent['PARENT_UID'];
- //计算级别之后更新过userInfo的缓存,缓存中级别发生了变化
- $bonusUserInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $parentEmpLevelId = $bonusUserInfo['EMP_LV'];
- $parentEmpLevel = $this->_empLevelConfig[$parentEmpLevelId];
- $parentRxPercent = $parentEmpLevel['RX_PERCENT'] ?? 0;
- $cacheMaxPercent = CalcCache::ycMaxBonusPercent($userId, $this->_periodNum);
- $diffPercent = $parentRxPercent - $cacheMaxPercent;
- if( $diffPercent <= 0 ) return self::LOOP_CONTINUE;
- $empBonus = $monthPvPcs * $diffPercent / 100;
- if( $empBonus <= 0 ) return self::LOOP_CONTINUE;
- //给本人添加聘级比例
- CalcCache::ycMaxBonusPercent($userId, $this->_periodNum, $parentRxPercent);
- //记录奖金和奖金来源到缓存 并实现在缓存中奖金累加
- CalcCache::saveYCBonusList($bonusUserId, $this->_periodNum, $empBonus, ['fromUid'=>$userId, 'fromPvPcs'=>$monthPvPcs]);
- CalcCache::addHasYcBonusUsers($bonusUserId, $this->_periodNum);
- unset($cacheMaxPercent, $diffPercent, $parentEmpLevel, $bonusUserId, $bonusUserInfo, $parentEmpLevelId, $empBonus);
- //达到最大的比例就不在向上找了
- if( $parentRxPercent >= $maxLevelPercent ) return self::LOOP_FINISH;
- unset($parentRxPercent);
- });
- unset($nowMonthPerf, $monthPvPcs);
- }
- unset($allData, $maxLevelPercent);
- $this->calcBonusYCStepOne($offset + $this->_limit);
- }
- unset($periodNum, $allData);
- return true;
- }
- /**
- * 结算荣衔奖第二步
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusYCStepTwo(int $offset = 0) {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- echo sprintf("时间:[%s]荣衔奖第【2】步,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $allData = CalcCache::getHasYcBonusUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- $monthPerfData = CalcCache::nowMonthPerf($userId, $this->_periodNum);
- $fxPvStatus = $monthPerfData['PV_PCS_FX'] >= $this->_sysConfig['monthPcsPvFxCondition']['VALUE'];
- unset($monthPerfData);
- if( !$fxPvStatus ) continue;
- unset($fxPvStatus);
- $ycBonusData = CalcCache::getYCBonusList($userId, $this->_periodNum);
- if( !$ycBonusData ) continue;
- $empBonus = $ycBonusData['empBonus'] ?? 0;
- if( $empBonus <=0 ) continue;
- //总金额限制
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $empBonus = $this->bonusTotalLimit($empBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $empBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $empBonus = Tool::formatPrice($empBonus);
- $deductData = $this->deduct($userId, $empBonus);
- CalcCache::bonus($userId, $this->_periodNum, 'BONUS_YC', $empBonus, $deductData);
- $empLevelId = $userBaseInfo['EMP_LV'];
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'DEEP' => 0,
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $empBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'BONUS_TYPE' => CalcBonusYC::BONUS_TYPE_YC,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'empLevelId' => $empLevelId,
- ])
- // 'FROM_DATA' => json_encode($ycBonusData['fromData']),
- ];
- unset($ycBonusData, $deductData);
- //如果是总监以上拿平级2代
- $empLevel = $this->_empLevelConfig[$empLevelId];
- $userEmpLevelSort = $empLevel['SORT'] ?? EmployLevel::EMP_LEVEL_SORT['NO_LEVEL'];
- // if( $userEmpLevelSort >= EmployLevel::EMP_LEVEL_SORT['JX_ZR_LEVEL'] ) {}
- $newInsertBonusData = $this->calcParentYC($userId, $userBaseInfo, $userEmpLevelSort, $empBonus);
- $insertBonusData = array_merge($insertBonusData, $newInsertBonusData);
- unset($newInsertBonusData);
- unset($userId, $userBaseInfo, $empLevel, $empLevelId, $userEmpLevelSort, $empBonus);
- }
- CalcBonusYC::batchInsert($insertBonusData);
- unset($insertBonusData, $allData);
- $this->calcBonusYCStepTwo($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * VIP奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusVIP(int $offset = 0)
- {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- echo sprintf("时间:[%s]VIP奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()), $offset);
- //从缓存获取分页有本月业绩的会员
- $allData = CalcCache::getHasMonthPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $insertBonusData = [];
- foreach ($allData as $userId) {
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //条件一:级别必须为VIP
- $isVip = false;
- if( $userBaseInfo['DEC_LV'] === DeclarationLevel::VIP_LEVEL_ID ) {
- $isVip= true;
- }
- if( $this->_sysConfig['vipBonusGoldDecLevel']['VALUE'] && $userBaseInfo['DEC_LV'] === DeclarationLevel::JIN_ZUAN_LEVEL_ID ) {
- $isVip = true;
- }
- if ( !$isVip ) {
- unset($userId, $userBaseInfo);
- continue;
- }
- //判断其它两个条件,满足则计算月团队奖,不满足则留下大区剩余业绩,清除其它区的剩余业绩
- //获取本月的业绩
- $monthPerfData = CalcCache::nowMonthPerf($userId, $this->_periodNum);
- // 从缓存中获取会员的上期结余业绩信息
- $pervSurplusPerf = CalcCache::surplusPerf($userId, $this->_periodNum);
- // 本期 + 上期结余
- $perfArr = [
- 'VIP_SURPLUS_1L_ZC' => $monthPerfData['VIP_PV_1L_ZC'] + $pervSurplusPerf['VIP_SURPLUS_1L_ZC'],
- 'VIP_SURPLUS_2L_ZC' => $monthPerfData['VIP_PV_2L_ZC'] + $pervSurplusPerf['VIP_SURPLUS_2L_ZC'],
- 'VIP_SURPLUS_3L_ZC' => $monthPerfData['VIP_PV_3L_ZC'] + $pervSurplusPerf['VIP_SURPLUS_3L_ZC'],
- 'VIP_SURPLUS_4L_ZC' => $monthPerfData['VIP_PV_4L_ZC'] + $pervSurplusPerf['VIP_SURPLUS_4L_ZC'],
- 'VIP_SURPLUS_5L_ZC' => $monthPerfData['VIP_PV_5L_ZC'] + $pervSurplusPerf['VIP_SURPLUS_5L_ZC'],
- ];
- //条件二:本月复消金额达到300元
- //fix-2021-03-26修改 条件二:本月个人复消PV300
- $fxPvStatus = $monthPerfData['PV_PCS_FX'] >= $this->_sysConfig['monthPcsPvFxCondition']['VALUE'];
- unset($monthPerfData, $pervSurplusPerf);
- if( !$fxPvStatus ) {
- $this->dealWithMaxPerf($userId, $perfArr);
- unset($userBaseInfo, $userId, $perfArr, $fxPvStatus);
- continue;
- }
- //条件三:其它市场业绩
- $isCanOtherDepartPerf = $this->_isCanVipBonusOtherAreaPerf($perfArr);
- if ( !$isCanOtherDepartPerf ) {
- $this->dealWithMaxPerf($userId, $perfArr);
- unset($userBaseInfo, $userId, $perfArr, $isCanOtherDepartPerf);
- continue;
- }
- $oriPerfArr = [
- 'perfArr' => $perfArr,
- 'touchBonus' => 0,
- ];
- // 对碰
- $touchBonusArr = $this->touchPerf($oriPerfArr, $perfArr, $this->_sysConfig['vipBonusPercent']['VALUE']/100);
- unset($oriPerfArr, $perfArr);
- $touchPerfArr = [];
- foreach ($touchBonusArr['perfArr'] as $keyR => $perfR) {
- $touchPerfArr[$keyR] = $perfR;
- }
- // 对碰完成后把结余的业绩存入本期业绩缓存中
- // CalcCache::nowPeriodPerf($userId, $this->_periodNum, $touchPerfArr);
- //更新数据库
- PerfMonth::updateAll($touchPerfArr, 'USER_ID=:USER_ID AND CALC_MONTH=:CALC_MONTH', [
- 'USER_ID' => $userId,
- 'CALC_MONTH' => $this->_calcYearMonth,
- ]);
- if ($touchBonusArr['touchBonus'] <= 0) continue;
- $vipBonus = $touchBonusArr['touchBonus'];
- //判断级别上限
- $vipBonus = $this->declarationLevelCap($vipBonus, $userId, $userBaseInfo['DEC_LV']);
- if( $vipBonus <= 0 ) continue;
- $vipBonus = $this->bonusTotalLimit($vipBonus, $userId, $userBaseInfo['REC_NUM'], $userBaseInfo['ZC_AMOUNT']);
- if( $vipBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $deductData = $this->deduct($userId, $vipBonus);
- CalcCache::bonus($userId, $this->_periodNum, 'BONUS_VIP', $vipBonus, $deductData);
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $vipBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode($touchPerfArr)
- ];
- unset($userBaseInfo, $userId, $perfArr, $fxAmountStatus, $isCanOtherDepartPerf, $touchBonusArr, $touchPerfArr, $vipBonus, $deductData);
- }
- if( $insertBonusData ) CalcBonusVIP::batchInsert($insertBonusData);
- unset($insertBonusData, $allData);
- $this->calcBonusVIP($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 见习达标奖
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function calcBonusStandard(int $offset = 0)
- {
- // 月结,如果不是月结点,则直接退出
- if (!$this->_isCalcMonth) {
- return true;
- }
- echo sprintf("时间:[%s]见习达标奖,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()), $offset);
- //从缓存获取分页有本月业绩的会员
- $allData = CalcCache::getHasStandardMonthPerfUsers($this->_periodNum, $offset, $this->_limit);
- if ($allData) {
- $minSaleCondition = $this->_jxStandardMinSaleCondition();
- $insertBonusData = [];
- foreach ($allData as $userId) {
- $userBaseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- //条件一:聘级必须为见习主任
- if( $userBaseInfo['EMP_LV'] != EmployLevel::JX_ZR_LEVEL_ID ) {
- unset($userId, $userBaseInfo);
- continue;
- }
- $standardMonthPerf = CalcCache::nowStandardMonthPerf($userId, $this->_periodNum);
- $totalAmount = $standardMonthPerf['AMOUNT_PCS'] + $standardMonthPerf['AMOUNT_PSS'];
- if( $totalAmount < $minSaleCondition ) {
- unset($userId, $userBaseInfo, $standardMonthPerf, $totalAmount);
- continue;
- }
- $standardBonus = $this->_jxStandardAwardAmount($totalAmount);
- if( $standardBonus <= 0 ) {
- unset($userId, $userBaseInfo, $standardMonthPerf, $totalAmount, $standardBonus);
- continue;
- }
- CalcCache::standardBonus($userId, $this->_periodNum, $standardBonus);
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'LAST_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_STATUS' => $userBaseInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'AMOUNT' => $standardBonus,
- 'ORI_BONUS' => $standardBonus,
- 'RECONSUME_POINTS' => 0,
- 'MANAGE_TAX' => 0,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode($standardMonthPerf)
- ];
- unset($userId, $userBaseInfo, $standardMonthPerf, $totalAmount);
- }
- if( $insertBonusData ) CalcBonusStandard::batchInsert($insertBonusData);
- unset($insertBonusData, $minSaleCondition, $insertBonusData, $allData);
- $this->calcBonusStandard($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * === 运算相关的辅助功能开始 ===
- */
- /**
- * 获取上2代的得奖人信息
- * @param $userId
- * @param $validDeep
- * @param $shareBonusOne
- * @return array
- */
- protected function gxLastTwoBonusData($userId, $validDeep, $shareBonusOne) {
- $bonusUserList = CalcCache::getShareBonusOneRelation($userId, $this->_periodNum, $validDeep);
- if( !$bonusUserList ) {
- unset($bonusUserList);
- return [];
- }
- $bonusUserData = [];
- $bonusUserTotalPerf = 0;
- $bonusUserRealList = [];
- foreach ($bonusUserList as $bonusUserId) {
- //查看该用户的个人业绩和团队新增业绩总和
- $nowPeriodData = CalcCache::nowPeriodPerf($bonusUserId, $this->_periodNum);
- //本期新增业绩
- $bonusUserPerf = $nowPeriodData['PV_PCS'] + $nowPeriodData['PV_PSS'];
- if ($bonusUserPerf <= 0) {
- unset($bonusUserId, $nowPeriodData, $bonusUserPerf);
- continue;
- }
- $bonusUserTotalPerf += $bonusUserPerf;
- $bonusUserRealList[] = [
- 'bonusUserId' => $bonusUserId,
- 'bonusUserPerf' => $bonusUserPerf,
- ];
- unset($bonusUserId, $nowPeriodData, $bonusUserPerf);
- }
- unset($bonusUserList);
- foreach ($bonusUserRealList as $everyData) {
- $bonusUserData[] = [
- 'bonusUid' => $everyData['bonusUserId'],
- 'bonus' => $shareBonusOne * $everyData['bonusUserPerf'] / $bonusUserTotalPerf,
- 'validMinPv' => false
- ];
- unset($everyData);
- }
- unset($bonusUserRealList);
- return $bonusUserData;
- }
- /**
- * 获取达标奖的金额
- * @param $amount
- * @return int|mixed
- */
- private function _jxStandardAwardAmount($amount) {
- // $jxStandardConfig = Json::decode($this->_sysConfig['jxStandard']['VALUE']);
- // $awardAmount = 0;
- // foreach ($jxStandardConfig as $everyData) {
- // if( $amount >= $everyData['salesCondition'] ) {
- // $awardAmount = $everyData['awardAmount'];
- // }
- // unset($everyData);
- // }
- //
- // return $awardAmount;
- $realTimes = floor($amount/self::JX_STANDARD_BASE_AMOUNT);
- $calcTimes = min($realTimes, self::JX_STANDARD_MAX_TIMES);
- $awardAmount = $calcTimes * self::JX_STANDARD_BASE_AMOUNT * self::JX_STANDARD_BONUS_PERCENT / 100;
- unset($amount, $realTimes, $calcTimes);
- return $awardAmount;
- }
- /**
- * 获取达标奖的最小条件
- * @return int|mixed
- */
- private function _jxStandardMinSaleCondition() {
- return self::JX_STANDARD_BASE_AMOUNT;
- }
- /**
- * 处理只留最大业绩的逻辑
- * @param $userId
- * @param $perfArr
- */
- private function dealWithMaxPerf($userId, $perfArr) {
- $maxPerf = max($perfArr);
- $hitMaxPerf = false;
- foreach ($perfArr as $key=>$everyPerf) {
- if( !$hitMaxPerf && $everyPerf == $maxPerf ) {
- $hitMaxPerf = true;
- }else {
- $perfArr[$key] = 0;
- }
- unset($key, $everyPerf);
- }
- //更新数据库
- PerfMonth::updateAll($perfArr, 'USER_ID=:USER_ID AND CALC_MONTH=:CALC_MONTH', [
- 'USER_ID' => $userId,
- 'CALC_MONTH' => $this->_calcYearMonth
- ]);
- unset($userId, $maxPerf, $hitMaxPerf, $perfArr);
- }
- /**
- * VIP奖其它市场的报单业绩是否能满足
- * @param $perfArr
- * @return bool
- */
- private function _isCanVipBonusOtherAreaPerf($perfArr) {
- $maxAreaPerf = max($perfArr);
- $totalAreaPerf = array_sum($perfArr);
- $diffAreaPerf = strval($totalAreaPerf - $maxAreaPerf);
- if( $diffAreaPerf >= $this->_sysConfig['vipBonusOtherDepartPvCondition']['VALUE'] ) {
- unset($maxAreaPerf, $totalAreaPerf, $perfArr);
- return true;
- }else {
- unset($maxAreaPerf, $totalAreaPerf, $perfArr);
- return false;
- }
- }
- /**
- * 给父级计算的荣衔奖
- * @param $userId
- * @param $userBaseInfo
- * @param $userEmpLevelSort
- * @param $qyBonus
- * @return array
- */
- public function calcParentYC($userId, $userBaseInfo, $userEmpLevelSort, $qyBonus) {
- if( $userEmpLevelSort <= EmployLevel::EMP_LEVEL_SORT['NO_LEVEL'] ) return [];
- $validDeep = 0;
- $bonusDataList = [];
- $this->loopRelationParentDo($userId, function ($parent) use ($userId, $userEmpLevelSort, &$validDeep, &$bonusDataList) {
- $bonusUserId = $parent['PARENT_UID'];
- $bonusUserInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $bonusUserEmpLevel = $this->_empLevelConfig[$bonusUserInfo['EMP_LV']];
- $bonusUserEmpLevelSort = $bonusUserEmpLevel['SORT'] ?? EmployLevel::EMP_LEVEL_SORT['NO_LEVEL'];
- unset($bonusUserInfo, $bonusUserEmpLevel);
- //必须是有聘级的用户
- if( $bonusUserEmpLevelSort <= EmployLevel::EMP_LEVEL_SORT['NO_LEVEL'] ) return self::LOOP_CONTINUE;
- //超过级别就停止
- if( $bonusUserEmpLevelSort > $userEmpLevelSort) return self::LOOP_FINISH;
- //级别小于就跳过
- if( $bonusUserEmpLevelSort < $userEmpLevelSort ) return self::LOOP_CONTINUE;
- $validDeep++;
- array_push($bonusDataList, [
- 'bonusUserId' => $bonusUserId,
- 'bonusType' => $validDeep,
- ]);
- if( $validDeep >= 2 ) return self::LOOP_FINISH;
- unset($bonusUserId, $bonusUserEmpLevelSort);
- });
- $insertBonusData = [];
- foreach ($bonusDataList as $bonusUserData) {
- $bonusUserId = $bonusUserData['bonusUserId'];
- $bonusMonthPerfData = CalcCache::nowMonthPerf($bonusUserId, $this->_periodNum);
- $fxPvStatus = $bonusMonthPerfData['PV_PCS_FX'] >= $this->_sysConfig['monthPcsPvFxCondition']['VALUE'];
- unset($bonusMonthPerfData);
- if( !$fxPvStatus ) continue;
- unset($fxPvStatus);
- $bonusUserInfo = CalcCache::getUserInfo($bonusUserId, $this->_periodNum);
- $bonusEmpLevelId = $bonusUserInfo['EMP_LV'];
- $newEmpBonus = Tool::formatPrice($qyBonus * $this->_sysConfig['sameEmpLevelPercent']['VALUE'] / 100);
- //总金额限制
- $newEmpBonus = $this->bonusTotalLimit($newEmpBonus, $bonusUserId, $bonusUserInfo['REC_NUM'], $bonusUserInfo['ZC_AMOUNT']);
- if( $newEmpBonus <= 0 ) continue;
- //扣除相应的复消积分和管理费
- $newEmpBonus = Tool::formatPrice($newEmpBonus);
- $deductData = $this->deduct($bonusUserId, $newEmpBonus);
- CalcCache::bonus($bonusUserId, $this->_periodNum, 'BONUS_YC_EXTRA', $newEmpBonus, $deductData);
- // 把育成津贴追加到育成津贴结算表,以便奖金追溯育成津贴用
- $insertBonusData[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $bonusUserId,
- 'LAST_DEC_LV' => $bonusUserInfo['DEC_LV'],
- 'LAST_EMP_LV' => $bonusUserInfo['EMP_LV'],
- 'LAST_STATUS' => $bonusUserInfo['STATUS'],
- 'FROM_USER_ID' => $userId,
- 'LAST_FROM_DEC_LV' => $userBaseInfo['DEC_LV'],
- 'LAST_FROM_EMP_LV' => $userBaseInfo['EMP_LV'],
- 'LAST_FROM_STATUS' => $userBaseInfo['STATUS'],
- 'DEEP' => 1,
- 'AMOUNT' => $deductData['surplus'],
- 'ORI_BONUS' => $newEmpBonus,
- 'RECONSUME_POINTS' => $deductData['reConsumePoints'],
- 'MANAGE_TAX' => $deductData['manageTax'],
- 'BONUS_TYPE' => $bonusUserData['bonusType'],
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- 'LOGS' => json_encode([
- 'empLevelId' => $bonusEmpLevelId,
- 'qyBonus' => $qyBonus,
- 'sameEmpLevelPercent' => $this->_sysConfig['sameEmpLevelPercent']['VALUE'],
- ]),
- ];
- unset($newEmpBonus, $bonusEmpLevelId, $bonusUserId, $bonusUserInfo, $deductData);
- }
- unset($userId, $userBaseInfo, $userEmpLevelSort, $qyBonus, $bonusDataList);
- return $insertBonusData;
- }
- /**
- * 对碰
- * @param array $oriPerfArr
- * @param array $perfArr
- * @param $percent
- * @param $loopTimes
- * @return array
- */
- public function touchPerf(array $oriPerfArr, array $perfArr, $percent, $loopTimes=1) {
- $resultArr = $oriPerfArr;
- foreach ($perfArr as $keyT => $perfT) {
- if ($perfT <= 0) {
- unset($perfArr[$keyT]);
- }
- }
- if (count($perfArr) >= 2 && $loopTimes < 6) {
- arsort($perfArr, SORT_NUMERIC);
- $onePerf = null;
- $oneKey = null;
- // $touchSurplusAmount = 0;
- $touchAmount = 0;
- // 前两个进行对碰
- foreach ($perfArr as $key => $perf) {
- if ($onePerf === null) {
- $oneKey = $key;
- $onePerf = $perf;
- } else {
- $touchSurplusAmount = $perf - $onePerf;
- if ($touchSurplusAmount > 0) {
- unset($perfArr[$oneKey]);
- $resultArr['perfArr'][$oneKey] = 0;
- $perfArr[$key] = $touchSurplusAmount;
- $touchAmount = $onePerf;
- } elseif ($touchSurplusAmount < 0) {
- unset($perfArr[$key]);
- $resultArr['perfArr'][$key] = 0;
- $perfArr[$oneKey] = abs($touchSurplusAmount);
- $touchAmount = $perf;
- } else {
- unset($perfArr[$oneKey], $perfArr[$key]);
- $resultArr['perfArr'][$oneKey] = 0;
- $resultArr['perfArr'][$key] = 0;
- $touchAmount = $perf;
- }
- break;
- }
- }
- /*if ($touchAmount > $nowDecLevelConfig['QY_TOUCH_CAP']) {
- $touchAmount = $nowDecLevelConfig['QY_TOUCH_CAP'];
- }*/
- $touchBonus = Tool::formatPrice($touchAmount * $percent);
- // if ($touchBonus > $nowDecLevelConfig['QY_TOUCH_CAP']) {
- // $resultArr['touchBonus'] += $nowDecLevelConfig['QY_TOUCH_CAP'];
- // } else {
- // $resultArr['touchBonus'] += $touchBonus;
- // }
- $resultArr['touchBonus'] += $touchBonus;
- foreach ($perfArr as $keyR => $perfR) {
- $resultArr['perfArr'][$keyR] = $perfR;
- }
- return $this->touchPerf($resultArr, $perfArr, $percent, $loopTimes+1);
- }
- return $resultArr;
- }
- /**
- * 对碰
- * @param array $oriPerfArr
- * @param array $perfArr
- * @param $decLevel
- * @param $decLevelConfig
- * @param $loopTimes
- * @return array
- */
- public function touchPerfBefore(array $oriPerfArr, array $perfArr, $decLevel, $decLevelConfig, $loopTimes=1) {
- $resultArr = $oriPerfArr;
- foreach ($perfArr as $keyT => $perfT) {
- if ($perfT <= 0) {
- unset($perfArr[$keyT]);
- }
- }
- if (count($perfArr) >= 2 && $loopTimes < 6) {
- $nowDecLevelConfig = $decLevelConfig[$decLevel];
- arsort($perfArr, SORT_NUMERIC);
- $onePerf = null;
- $oneKey = null;
- // $touchSurplusAmount = 0;
- $touchAmount = 0;
- // 前两个进行对碰
- foreach ($perfArr as $key => $perf) {
- if ($onePerf === null) {
- $oneKey = $key;
- $onePerf = $perf;
- } else {
- $touchSurplusAmount = $perf - $onePerf;
- if ($touchSurplusAmount > 0) {
- unset($perfArr[$oneKey]);
- $resultArr['perfArr'][$oneKey] = 0;
- $perfArr[$key] = $touchSurplusAmount;
- $touchAmount = $onePerf;
- } elseif ($touchSurplusAmount < 0) {
- unset($perfArr[$key]);
- $resultArr['perfArr'][$key] = 0;
- $perfArr[$oneKey] = abs($touchSurplusAmount);
- $touchAmount = $perf;
- } else {
- unset($perfArr[$oneKey], $perfArr[$key]);
- $resultArr['perfArr'][$oneKey] = 0;
- $resultArr['perfArr'][$key] = 0;
- $touchAmount = $perf;
- }
- break;
- }
- }
- /*if ($touchAmount > $nowDecLevelConfig['QY_TOUCH_CAP']) {
- $touchAmount = $nowDecLevelConfig['QY_TOUCH_CAP'];
- }*/
- $touchBonus = Tool::formatPrice($touchAmount * 2 / 100);
- // if ($touchBonus > $nowDecLevelConfig['QY_TOUCH_CAP']) {
- // $resultArr['touchBonus'] += $nowDecLevelConfig['QY_TOUCH_CAP'];
- // } else {
- // $resultArr['touchBonus'] += $touchBonus;
- // }
- $resultArr['touchBonus'] += $touchBonus;
- foreach ($perfArr as $keyR => $perfR) {
- $resultArr['perfArr'][$keyR] = $perfR;
- }
- return $this->touchPerfBefore($resultArr, $perfArr, $decLevel, $decLevelConfig, $loopTimes+1);
- }
- return $resultArr;
- }
- /**
- * 循环父级并执行回调函数
- * @param $userId
- * @param callable $callbackFunc
- * @param int $offset
- * @return bool
- */
- public function loopNetworkParentDo($userId, callable $callbackFunc, int $offset = 0) {
- $allParents = Cache::getAllNetworkParents($userId);
- $allData = array_slice($allParents, $offset, $this->_limit);
- unset($allParents);
- if ($allData) {
- foreach ($allData as $data) {
- $funcResult = $callbackFunc($data);
- if ($funcResult === self::LOOP_FINISH) {
- return true;
- } elseif ($funcResult === self::LOOP_CONTINUE) {
- continue;
- }
- unset($data, $funcResult);
- }
- unset($allData);
- return $this->loopNetworkParentDo($userId, $callbackFunc, $offset + $this->_limit);
- }
- return true;
- }
- /**
- * 循环推荐网络的父级
- * @param $userId
- * @param callable $callbackFunc
- * @param int $offset
- * @return bool
- */
- public function loopRelationParentDo($userId, callable $callbackFunc, int $offset = 0) {
- $allParents = Cache::getAllRelationParents($userId);
- $allData = array_slice($allParents, $offset, $this->_limit);
- unset($allParents);
- if ($allData) {
- foreach ($allData as $data) {
- $funcResult = $callbackFunc($data);
- if ($funcResult === self::LOOP_FINISH) {
- return true;
- } elseif ($funcResult === self::LOOP_CONTINUE) {
- continue;
- }
- unset($data, $funcResult);
- }
- unset($allData);
- return $this->loopRelationParentDo($userId, $callbackFunc, $offset + $this->_limit);
- }
- return true;
- }
- /**
- * 共享奖,判断当期此用户,是否有原报单团队奖金
- */
- public function checkHasOriBonusQyBd($userId) {
- //判断$parent是否有首单团队奖
- $bonus = CalcCache::bonus($userId, $this->_periodNum);
- if( isset($bonus['ORI_BONUS_QY_BD']) && $bonus['ORI_BONUS_QY_BD'] > 0 ) {
- return true;
- }
- return false;
- }
- /**
- * 判断除大市场外 其它市场的报单业绩
- * @param $userId
- * @return bool
- * @throws \yii\db\Exception
- */
- public function checkSmallMarketPerf($userId) {
- // 从缓存中获取会员的上期结余业绩信息
- $pervSurplusPerf = CalcCache::surplusPerf($userId, $this->_periodNum);
- //判断出大市场
- $areaNums = [1, 2, 3];
- $maxArea = 0;
- $maxSurplusPerf = 0;
- foreach ($areaNums as $area) {
- $areaKey = sprintf('SURPLUS_%dL', $area);
- if ( isset($pervSurplusPerf[$areaKey]) && $pervSurplusPerf[$areaKey] > $maxSurplusPerf ) {
- $maxArea = $area;
- $maxSurplusPerf = $pervSurplusPerf[$areaKey];
- }
- unset($area, $areaKey);
- }
- unset($pervSurplusPerf, $maxSurplusPerf);
- $otherAreaZcPv = 0;
- $nowPeriodPerf = CalcCache::nowPeriodPerf($userId, $this->_periodNum);
- foreach ($areaNums as $area) {
- if( $maxArea > 0 && $area === $maxArea ) continue;
- $areaKey = sprintf('PV_%dL_ZC', $area);
- if ( isset($nowPeriodPerf[$areaKey]) && $nowPeriodPerf[$areaKey] > 0 ) {
- $otherAreaZcPv += $nowPeriodPerf[$areaKey];
- }
- unset($area, $areaKey);
- }
- unset($nowPeriodPerf, $areaNums, $maxArea);
- return $otherAreaZcPv >= self::MIN_BD_PV;
- }
- /**
- * 获取有最小报单PV的用效父级
- * @param $userId
- * @return string
- */
- public function getMinBdPvRelationParent($userId) {
- $validParentId = '';
- $this->loopRelationParentDo($userId, function ($parent) use(&$validParentId) {
- if ( $this->checkSmallMarketPerf($parent['PARENT_UID']) ) {
- $validParentId = $parent['PARENT_UID'];
- unset($parent);
- return self::LOOP_FINISH;
- }
- unset($parent);
- });
- return$validParentId;
- }
- /**
- * 获取有最小报单PV的用效父级 20220407修改成是否此期此用户有原报单团队奖金
- * @param $userId
- * @return string
- */
- public function getMinBdPvNetworkParent($userId, $openFindLimit = 1, $findLimitTimes = 5) {
- $validParentId = '';
- $validDeep = 1;
- $this->loopNetworkParentDo($userId, function ($parent) use(&$validParentId,&$validDeep,$openFindLimit,$findLimitTimes) {
- if ( $this->checkHasOriBonusQyBd($parent['PARENT_UID']) ) {
- $validParentId = $parent['PARENT_UID'];
- unset($parent);
- return self::LOOP_FINISH;
- }
- // 只找5层
- if ( $openFindLimit && $validDeep >= $findLimitTimes ) {
- unset($parent);
- return self::LOOP_FINISH;
- }
- $validDeep += 1;
- unset($parent);
- });
- return$validParentId;
- }
- // public function getMinBdPvNetworkParent($userId, $openFindLimit = 1, $findLimitTimes = 5) {
- // $validParentId = '';
- // $validDeep = 1;
- // $this->loopNetworkParentDo($userId, function ($parent) use(&$validParentId,&$validDeep,$openFindLimit,$findLimitTimes) {
- // if ( $this->checkSmallMarketPerf($parent['PARENT_UID']) ) {
- // $validParentId = $parent['PARENT_UID'];
- // unset($parent);
- // return self::LOOP_FINISH;
- // }
- // // 只找5层
- // if ( $openFindLimit && $validDeep >= $findLimitTimes ) {
- // unset($parent);
- // return self::LOOP_FINISH;
- // }
- // $validDeep += 1;
- // unset($parent);
- // });
- // return$validParentId;
- // }
- /**
- * 按级别的收入上限
- * 新的需求调整: 改成不按月进行限制,并且去掉vip奖
- * @param $bonus
- * @param $userId
- * @param $declarationLevel
- * @return float
- */
- public function declarationLevelCap($bonus, $userId, $declarationLevel) {
- $decLevelConfig = $this->_decLevelConfig;
- $nowDecLevelConfig = $decLevelConfig[$declarationLevel];
- unset($decLevelConfig);
- $maxGetBonus = $nowDecLevelConfig['INCOME_CAP'];
- if( $bonus <= $maxGetBonus) {
- return $bonus;
- }else {
- return $maxGetBonus;
- }
- }
- // public function declarationLevelCap($bonus, $userId, $declarationLevel) {
- // $decLevelConfig = $this->_decLevelConfig;
- // $nowDecLevelConfig = $decLevelConfig[$declarationLevel];
- // unset($decLevelConfig);
- // //本月往期奖金 这里执行速度可能慢一些,但需求如此没有办法
- // $lastData = CalcCache::lastPeriodMonthCalcBonus($userId, $this->_periodNum, $this->_calcMonth);
- // $lastTotal = $lastData['ORI_BONUS_QY_SUM'] + $lastData['ORI_BONUS_VIP_SUM'];
- // // 从缓存中获取用户的奖金
- // $bonusData = CalcCache::bonus($userId, $this->_periodNum);
- // $thisTotal = $bonusData['ORI_BONUS_QY'] + $bonusData['ORI_BONUS_VIP'];
- // $maxGetBonus = $nowDecLevelConfig['INCOME_CAP'] * $this->_calcMonthPeriodNumCount - $lastTotal - $thisTotal;
- // unset($lastData, $lastTotal, $bonusData, $thisTotal);
- // if( $maxGetBonus <= 0 ) return 0.00;
- // if( $bonus <= $maxGetBonus) {
- // return $bonus;
- // }else {
- // return $maxGetBonus;
- // }
- // }
- /**
- * 总奖金限制
- * @param $bonus
- * @param $userId
- * @param $recNum
- * @param $decAmount
- * @return float
- */
- public function bonusTotalLimit($bonus, $userId, $recNum, $decAmount) {
- //@todo 临时不做总奖金限制
- return $bonus;
- if( $recNum >= 3 ) return $bonus;
- $limitAmount = 0;
- switch ($recNum) {
- case 0:
- $limitAmount = $decAmount * $this->_sysConfig['bonusTotalZeroLimit']['VALUE'];
- break;
- case 1:
- $limitAmount = $decAmount * $this->_sysConfig['bonusTotalOneLimit']['VALUE'];
- break;
- case 2:
- $limitAmount = $decAmount * $this->_sysConfig['bonusTotalTwoLimit']['VALUE'];
- break;
- default:
- break;
- }
- // 从缓存中获取用户的奖金
- $lastUserBonus = CalcCache::LastUserBonus($userId, $this->_periodNum);//往期的总金额
- $bonusData = CalcCache::bonus($userId, $this->_periodNum);
- $bonusTotal = $bonusData['BONUS_TOTAL'] + $lastUserBonus['BONUS_TOTAL'];
- unset($lastUserBonus, $userId, $recNum, $decAmount, $bonusData);
- if( $bonusTotal >= $limitAmount ) return 0.00;
- if( $bonusTotal + $bonus <= $limitAmount) {
- return $bonus;
- }else {
- return $limitAmount - $bonusTotal;
- }
- }
- /**
- * 扣除复消积分和管理费
- * @param $userId
- * @param $bonus
- * @return array
- * @throws \yii\db\Exception
- */
- public function deductNoReconsumePoints($userId, $bonus): array
- {
- $manageTax = $bonus * $this->_sysConfig['manageTaxPercent']['VALUE'] / 100;
- $surplus = $bonus - $manageTax;
- return [
- 'reConsumePoints' => 0.00,
- 'manageTax' => Tool::formatPrice($manageTax),
- 'surplus' => Tool::formatPrice($surplus),
- ];
- }
- /**
- * 扣除复消积分和管理费
- * @param $userId
- * @param $bonus
- * @return array
- * @throws \yii\db\Exception
- */
- public function deduct($userId, $bonus) {
- //判断是否达到了本月扣除复消的上限
- $cacheData = CalcCache::monthLastPeriodReconsumePoints($userId, $this->_periodNum, $this->_calcYearMonth);
- $bonusCache = CalcCache::bonus($userId, $this->_periodNum);
- $reConsumePointsTotal = $bonusCache['RECONSUME_POINTS'] + $cacheData['RECONSUME_POINTS_SUM'];
- $reConsumePointsCap = $this->_sysConfig['reConsumePointsMonthCap']['VALUE'];
- unset($cacheData, $bonusCache);
- $reConsumePoints = 0;
- if( $reConsumePointsTotal < $reConsumePointsCap ) {
- $reConsumePoints = $bonus * $this->_sysConfig['reConsumePointsPercent']['VALUE'] / 100;
- $reConsumePoints = min($reConsumePoints, $reConsumePointsCap-$reConsumePointsTotal);
- }
- unset($reConsumePointsTotal, $reConsumePointsCap);
- $manageTax = $bonus * $this->_sysConfig['manageTaxPercent']['VALUE'] / 100;
- $surplus = $bonus - $reConsumePoints - $manageTax;
- return [
- 'reConsumePoints' => Tool::formatPrice($reConsumePoints),//复效积分
- 'manageTax' => Tool::formatPrice($manageTax),//管理费
- 'surplus' => Tool::formatPrice($surplus),//真实奖金
- ];
- }
- /**
- * 更新百分比并发送
- * @param $percent
- */
- private function _updatePercent($percent) {
- // 把数据写入数据库中
- Period::updateAll(['CALC_PERCENT' => $percent], 'PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum]);
- \Yii::$app->swooleAsyncTimer->pushAsyncPercentToAdmin($percent, ['MODEL' => 'PERIOD', 'ID' => $this->_periodId, 'FIELD' => 'CALC_PERCENT']);
- }
- /**
- * 把往期有月奖金的会员加到本期有奖会员缓存列表中
- * @param int $offset
- * @return bool
- */
- public function loopMonthBonusUserFromDbToCache($offset = 0) {
- if (!$this->_isCalcMonth) {
- return true;
- }
- $allData = CalcMonthBonusUser::findUseDbCalc()->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])->offset($offset)->limit($this->_limit)->asArray()->all();
- if ( $allData ) {
- foreach ($allData as $everyData) {
- CalcCache::addHasBonusUsers($everyData['USER_ID'], $this->_periodNum);
- unset($everyData);
- }
- unset($allData);
- $this->loopMonthBonusUserFromDbToCache($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 把缓存中的月奖用户信息存到数据库
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function loopMonthBonusUserToDb($offset = 0) {
- echo sprintf("时间:[%s]月奖会员入库,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- $allData = CalcCache::getHasMonthBonusUsers($this->_periodNum, $offset, $this->_limit);
- if($allData) {
- $insertDataBonusUser = [];
- foreach($allData as $userId){
- $insertDataBonusUser[] = [
- 'ID' => SnowFake::instance()->generateId(),
- 'USER_ID' => $userId,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CREATED_AT' => Date::nowTime()
- ];
- unset($userId);
- }
- if( $insertDataBonusUser ) CalcMonthBonusUser::batchInsert($insertDataBonusUser);
- unset($insertDataBonus, $allData);
- return $this->loopMonthBonusUserToDb($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- //奖金入库
- /**
- * 循环奖服务奖金会员,并入库
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function loopBonusUsers($offset = 0) {
- echo sprintf("时间:[%s]缓存奖金数据入库,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- // 从缓存列表里面从底层往上倒序获取会员
- // 这里有问题,因为蓝星奖,是存储过程计算的,并没有加入缓存,这里需要修改.
- // 给用户发送兑换积分,也需要进行调整查看。
- // CalcCache::addHasBonusUsers($everyData['USER_ID'], $this->_periodNum);
- $allData = CalcCache::getHasBonusUsers($this->_periodNum, $offset, $this->_limit);
- if($allData){
- $insertDataBonus = [];
- foreach($allData as $userId){
- $tempBonusData = $this->bonusData($userId);
- if(!empty($tempBonusData['result'])){
- $insertDataBonus[] = $tempBonusData['result'];
- }
- unset($userId, $tempBonusData);
- }
- CalcBonus::batchInsert($insertDataBonus);
- unset($insertDataBonus, $allData);
- return $this->loopBonusUsers($offset + $this->_limit);
- }
- return true;
- }
- // 奖金入库完成,将各个奖金计算流水会员聘级,更新成蓝星奖当时计算的聘级
- public function loopCalcBlueEmpLv($offset = 0) {
- if( !$this->_isCalcMonth ) {
- // 不是结算月,则不需要进行聘级调整
- return false;
- }
- // 从缓存获取分页有收入的会员信息
- $allData = CalcBonusBS::findUseDbCalc()
- ->where('PERIOD_NUM=:PERIOD_NUM', [':PERIOD_NUM' => $this->_periodNum])
- ->groupBy('USER_ID')
- ->offset($offset)
- ->limit($this->_limit)
- ->asArray()
- ->all();
- if ($allData) {
- foreach ($allData as $data) {
- $nowBsEmpLv = $data['LEVEL_ID']; // 当前蓝星奖计算(即管理奖) 的等级
- // 修改AR_CALC_BONUS的LAST_EMP_LV聘级,修改奖金流水的聘级AR_FLOW_BONUS表的LAST_EMP_LV
- // 期结算结果
- CalcBonus::updateAll(['LAST_EMP_LV' => $nowBsEmpLv], 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [
- ':USER_ID' => $data['USER_ID'],
- ':PERIOD_NUM' => $this->_periodNum
- ]
- );
- // 奖金流水
- FlowBonus::updateAll(['LAST_EMP_LV' => $nowBsEmpLv], 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [
- ':USER_ID' => $data['USER_ID'],
- ':PERIOD_NUM' => $this->_periodNum
- ]
- );
- // // 共享奖流水
- // CalcBonusGX::updateAll(['LAST_EMP_LV' => $nowBsEmpLv], 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- // [
- // ':USER_ID' => $data['USER_ID'],
- // ':PERIOD_NUM' => $this->_periodNum
- // ]
- // );
- // 推广奖流水
- CalcBonusTG::updateAll(['LAST_EMP_LV' => $nowBsEmpLv], 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [
- ':USER_ID' => $data['USER_ID'],
- ':PERIOD_NUM' => $this->_periodNum
- ]
- );
- // 团队奖流水
- CalcBonusQY::updateAll(['LAST_EMP_LV' => $nowBsEmpLv], 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [
- ':USER_ID' => $data['USER_ID'],
- ':PERIOD_NUM' => $this->_periodNum
- ]
- );
- // // 服务奖流水
- // CalcBonusBD::updateAll(['LAST_EMP_LV' => $nowBsEmpLv], 'USER_ID=:USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- // [
- // ':USER_ID' => $data['USER_ID'],
- // ':PERIOD_NUM' => $this->_periodNum
- // ]
- // );
- // // 更新form的聘级
- // CalcBonusGX::updateAll(['LAST_FROM_EMP_LV' => $nowBsEmpLv], 'FROM_USER_ID=:FROM_USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- // [
- // ':FROM_USER_ID' => $data['USER_ID'],
- // ':PERIOD_NUM' => $this->_periodNum
- // ]
- // );
- CalcBonusTG::updateAll(['LAST_FROM_EMP_LV' => $nowBsEmpLv], 'FROM_USER_ID=:FROM_USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- [
- ':FROM_USER_ID' => $data['USER_ID'],
- ':PERIOD_NUM' => $this->_periodNum
- ]
- );
- // CalcBonusBD::updateAll(['LAST_FROM_EMP_LV' => $nowBsEmpLv], 'FROM_USER_ID=:FROM_USER_ID AND PERIOD_NUM=:PERIOD_NUM',
- // [
- // ':FROM_USER_ID' => $data['USER_ID'],
- // ':PERIOD_NUM' => $this->_periodNum
- // ]
- // );
- }
- unset($allData);
- return $this->loopCalcBlueEmpLv($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 奖金
- * @param $userId
- * @return array
- * @throws \yii\db\Exception
- */
- public function bonusData($userId) {
- // 从缓存中获取用户的奖金
- $bonus = CalcCache::bonus($userId, $this->_periodNum);
- $standardBonus = CalcCache::standardBonus($userId, $this->_periodNum);
- $baseInfo = CalcCache::getUserInfo($userId, $this->_periodNum);
- $perfData = CalcCache::nowPeriodPerf($userId, $this->_periodNum);
- $tourismBonus = CalcCache::tourismBonus($userId, $this->_periodNum);
- $garageBonus = CalcCache::garageBonus($userId, $this->_periodNum);
- $villaBonus = CalcCache::villaBonus($userId, $this->_periodNum);
- $empLv = $baseInfo['EMP_LV'];
- // if($this->_isCalcMonth){
- // $empLv = $this->nowMonthPerfData($userId)['LAST_EMP_LV'];
- // }
- $pervSurplusPerf = CalcCache::surplusPerf($userId, $this->_periodNum);
- // 星级
- $starCrownLv = CalcCache::getUserStartCrown($userId, $this->_periodNum);
- // //没有共享和管理奖 以前的管理奖和共享奖逻辑
- // $bonusReal = $bonus['BONUS_BD'] + $bonus['BONUS_TG'] + $bonus['BONUS_XF'] + $bonus['BONUS_YJ'] + $bonus['BONUS_QY'] + $bonus['BONUS_YC'] + $bonus['BONUS_YC_EXTRA'] + $bonus['BONUS_VIP'] + $standardBonus;
- // $realBonusGx = 0;
- // $realBonusGl = 0;
- // if( $this->_isCalcMonth ) {
- // //查看是否复消300
- // $monthPerfData = CalcCache::nowMonthPerf($userId, $this->_periodNum);
- // $fxPvStatus = $monthPerfData['PV_PCS_FX'] >= $this->_sysConfig['monthPcsPvFxCondition']['VALUE'];
- // if ( $fxPvStatus ) {//加上本期和往期的共享和管理奖
- // $monthSumData = CalcBonus::findUseSlaves()->select('SUM(BONUS_GX) AS BONUS_GX_SUM, SUM(BONUS_GL) AS BONUS_GL_SUM')->where('USER_ID=:USER_ID AND CALC_MONTH=:CALC_MONTH', ['USER_ID'=>$userId, 'CALC_MONTH'=>$this->_calcYearMonth])->asArray()->one();
- // $bonusGxSum = $monthSumData['BONUS_GX_SUM'] ?? 0;
- // $bonusGlSum = $monthSumData['BONUS_GL_SUM'] ?? 0;
- // $realBonusGx += $bonusGxSum + $bonus['BONUS_GX'];
- // $realBonusGl += $bonusGlSum + $bonus['BONUS_GL'];
- // $bonusReal += $realBonusGx + $realBonusGl;
- // unset($monthSumData, $bonusGxSum, $bonusGlSum);
- // }
- // }
- //没有共享和管理奖
- $bonusReal = $bonus['BONUS_BD'] + $bonus['BONUS_TG'] + $bonus['BONUS_XF'] + $bonus['BONUS_YJ'] + $bonus['BONUS_QY'] + $bonus['BONUS_YC'] + $bonus['BONUS_YC_EXTRA'] + $bonus['BONUS_VIP'] + $standardBonus + $bonus['BONUS_BS_MNT'] + $bonus['BONUS_BS_ABBR'];
- $realBonusGx = 0;
- $realBonusGl = 0;
- $realBonusBs = 0; // 蓝星管理奖. BlueStar
- $blueStartOriBonus = 0;
- $blueStartManageTax = 0;
- $exchangePoints = 0; // 蓝星奖管理奖. 产生的兑换积分
- $realBonusBsMnt = 0; // 蓝星管理奖——实发奖金
- $blueStartOriBonusMnt = 0; // 蓝星管理奖——原奖金
- $blueStartManageTaxMnt = 0; // 蓝星管理奖——管理费
- $realBonusBsAbbr = 0; // 蓝星业绩奖——实发奖金
- $blueStartOriBonusAbbr = 0; // 蓝星业绩奖——原奖金
- $blueStartManageTaxAbbr = 0; // 蓝星业绩奖——管理费
- if( $this->_isCalcMonth ) {
- // 个人月消费PV大于配置值,才会计算发放蓝星奖
- $fxPvStatus = $this->_isMonthPerfLimit($userId);
- // BONUS_REAL 字段是发到用户的真实奖金
- if ( $fxPvStatus ) {
- // 管理奖改成了蓝星奖,但是对于用户来说依旧叫管理奖.字段改成bs.
- // 因为管理奖(即蓝星奖,是用存储过程计算的,则此处直接取AR_CALC_BONUS_BS表中计算的结果数据使用,
- // 并将管理奖结果同步到当前结算月的CalcBonus中)
- // 由于单独奖金流水记录每次都插入,所以倒叙找最新的数据.
- $userBS = CalcBonusBS::find()
- ->where(
- 'PERIOD_NUM=:PERIOD_NUM AND USER_ID=:USER_ID',
- [
- ':PERIOD_NUM' => $this->_periodNum,
- ':USER_ID' => $userId
- ]
- )
- ->select('AMOUNT,ORI_BONUS,MANAGE_TAX,LEVEL_ID,PRODUCT_POINT,AMOUNT_MNT,ORI_BONUS_MNT,MANAGE_TAX_MNT,AMOUNT_ABBR,ORI_BONUS_ABBR,MANAGE_TAX_ABBR')
- ->limit(1)
- ->orderBy('CREATED_AT DESC')
- ->asArray()
- ->all();
- $userBS = is_array($userBS) ? reset($userBS) : [];
- $blueStartAmount = isset($userBS['AMOUNT']) && !empty($userBS['AMOUNT']) ? $userBS['AMOUNT'] : 0; // 奖金
- $blueStartOriBonus = isset($userBS['ORI_BONUS']) && !empty($userBS['ORI_BONUS']) ? $userBS['ORI_BONUS'] : 0; // 原奖金
- $blueStartManageTax = isset($userBS['MANAGE_TAX']) && !empty($userBS['MANAGE_TAX']) ? $userBS['MANAGE_TAX'] : 0; // 管理费
- $realBonusBsMnt = $userBS['AMOUNT_MNT'] ?? 0; // 蓝星管理奖. 实发奖金
- $blueStartOriBonusMnt = $userBS['ORI_BONUS_MNT'] ?? 0; // 蓝星管理奖. 原奖金
- $blueStartManageTaxMnt = $userBS['MANAGE_TAX_MNT'] ?? 0; // 蓝星管理奖. 管理费
- $realBonusBsAbbr = $userBS['AMOUNT_ABBR'] ?? 0; // 蓝星业绩奖. 奖金
- $blueStartOriBonusAbbr = $userBS['ORI_BONUS_ABBR'] ?? 0; // 蓝星业绩奖. 原奖金
- $blueStartManageTaxAbbr = $userBS['MANAGE_TAX_ABBR'] ?? 0; // 蓝星业绩奖. 管理费
- $blueStartManageTax += $blueStartManageTaxMnt + $blueStartManageTaxAbbr; // 管理费
- $monthSumData = CalcBonus::findUseSlaves()
- ->select('SUM(BONUS_GX) AS BONUS_GX_SUM, SUM(BONUS_GL) AS BONUS_GL_SUM')
- ->where('USER_ID=:USER_ID AND CALC_MONTH=:CALC_MONTH',
- [
- 'USER_ID' => $userId,
- 'CALC_MONTH' => $this->_calcYearMonth
- ]
- )
- ->asArray()
- ->one();
- $realBonusBs = $blueStartAmount; // 蓝星奖直接取数据库中算好的值PRODUCT_POINT
- $exchangePoints = isset($userBS['PRODUCT_POINT']) && !empty($userBS['PRODUCT_POINT']) ? $userBS['PRODUCT_POINT'] : 0; // 兑换积分
- // 蓝星奖总奖金:管理奖+业绩奖
- // $blueStartOriBonus = $blueStartOriBonusMnt + $blueStartOriBonusAbbr;
- // $bonus['BONUS_TOTAL'] = $bonus['BONUS_TOTAL'] + $blueStartOriBonus; // 管理奖在存储过程计算,这里单独加上管理奖(即蓝星奖)
- unset($monthSumData, $bonusGxSum, $bonusGlSum);
- }
- }
- if( $this->_isCalcMonth ) { //季度奖
- if(in_array($this->_calcMonth, [3,6,9,12])){ // 季度奖
- }
- }
- $result = [
- 'USER_ID' => $userId,
- 'LAST_USER_NAME' => $baseInfo['USER_NAME'],
- 'LAST_REAL_NAME' => $baseInfo['REAL_NAME'],
- 'LAST_DEC_LV' => $baseInfo['DEC_LV'],
- 'LAST_EMP_LV' => $empLv,
- 'LAST_STAR_LV' => $starCrownLv ?? StarCrownLevel::getDefaultLevelId(),
- 'LAST_STATUS' => $baseInfo['STATUS'],
- 'LAST_MOBILE' => $baseInfo['MOBILE'],
- 'LAST_PERIOD_AT' => $baseInfo['PERIOD_NUM'],
- 'LAST_CREATED_AT' => $baseInfo['CREATED_AT'],
- 'LAST_SUB_COM_ID' => $baseInfo['SUB_COM_ID'],
- 'LAST_PROVINCE' => $baseInfo['PROVINCE'],
- 'LAST_CITY' => $baseInfo['CITY'],
- 'LAST_COUNTY' => $baseInfo['COUNTY'],
- 'LAST_SYSTEM_ID' => $baseInfo['SYSTEM_ID'] ? $baseInfo['SYSTEM_ID'] : '',
- 'LAST_IS_DIRECT_SELLER' => $baseInfo['IS_DIRECT_SELLER'],
- 'LAST_REC_USER_NAME' => $baseInfo['REC_USER_NAME'],
- 'LAST_REC_REAL_NAME' => $baseInfo['REC_REAL_NAME'],
- 'LAST_CON_USER_NAME' => $baseInfo['CON_USER_NAME'],
- 'LAST_CON_REAL_NAME' => $baseInfo['CON_REAL_NAME'],
- 'EXCHANGE_POINTS' => $exchangePoints, // 兑换积分
- // 'LAST_LOCATION' => $baseInfo['LOCATION'] ? $baseInfo['LOCATION'] : 1,
- //@todo
- 'LAST_LOCATION' => 1,
- 'BONUS_BD' => $bonus['BONUS_BD'],
- 'BONUS_TG' => $bonus['BONUS_TG'],
- 'BONUS_XF' => $bonus['BONUS_XF'],
- 'BONUS_YJ' => $bonus['BONUS_YJ'],
- 'BONUS_GX' => $bonus['BONUS_GX'],
- 'BONUS_GL' => $bonus['BONUS_GL'],
- 'BONUS_QY' => $bonus['BONUS_QY'],
- 'BONUS_YC' => $bonus['BONUS_YC'] + $bonus['BONUS_YC_EXTRA'],
- 'BONUS_VIP' => $bonus['BONUS_VIP'],
- 'RECONSUME_POINTS' => $bonus['RECONSUME_POINTS'],
- 'MANAGE_TAX' => $blueStartManageTax, // 管理费
- 'BONUS_INCOME'=>$bonus['INCOME_TOTAL'],
- 'BONUS_REAL'=> $bonusReal,
- 'BONUS_TOTAL'=>$bonus['BONUS_TOTAL'],
- 'ORI_BONUS_BD' => $bonus['ORI_BONUS_BD'],
- 'ORI_BONUS_TG' => $bonus['ORI_BONUS_TG'],
- 'ORI_BONUS_XF' => $bonus['ORI_BONUS_XF'],
- 'ORI_BONUS_YJ' => $bonus['ORI_BONUS_YJ'],
- 'ORI_BONUS_YJ_BD' => $bonus['ORI_BONUS_YJ_BD'],
- 'ORI_BONUS_YJ_FX' => $bonus['ORI_BONUS_YJ_FX'],
- 'ORI_BONUS_GX' => $bonus['ORI_BONUS_GX'],
- 'REAL_BONUS_GX' => $realBonusGx,
- 'ORI_BONUS_GL' => $bonus['ORI_BONUS_GL'],
- 'REAL_BONUS_GL' => $realBonusGl,
- 'BONUS_BS' => $realBonusBs, // 新的管理奖金,即蓝星管理奖
- 'ORI_BONUS_BS' => $blueStartOriBonus, // 蓝星管理奖金原奖金,即包含管理费
- 'REAL_BONUS_BS' => $realBonusBs, // 实发蓝星管理奖金
- 'BONUS_BS_MNT' => $realBonusBsMnt, // 蓝星管理奖
- 'ORI_BONUS_BS_MNT' => $blueStartOriBonusMnt, // 蓝星管理奖金原奖金,即包含管理费
- 'REAL_BONUS_BS_MNT' => $realBonusBsMnt, // 实发蓝星管理奖金
- 'MANAGE_TAX_MNT' => $blueStartManageTaxMnt, // 实发蓝星管理——管理费
- 'BONUS_BS_ABBR' => $realBonusBsAbbr, // 蓝星业绩奖
- 'ORI_BONUS_BS_ABBR' => $blueStartOriBonusAbbr, // 蓝星业绩奖金原奖金,即包含管理费
- 'REAL_BONUS_BS_ABBR' => $realBonusBsAbbr, // 实发蓝星业绩奖金
- 'MANAGE_TAX_ABBR' => $blueStartManageTaxAbbr, // 实发蓝星业绩奖——管理费
- 'ORI_BONUS_GL_BD' => $bonus['ORI_BONUS_GL_BD'],
- 'ORI_BONUS_GL_FX' => $bonus['ORI_BONUS_GL_FX'],
- 'ORI_BONUS_QY' => $bonus['ORI_BONUS_QY'],
- 'ORI_BONUS_QY_BD' => $bonus['ORI_BONUS_QY_BD'],
- 'ORI_BONUS_QY_FX' => $bonus['ORI_BONUS_QY_FX'],
- 'ORI_BONUS_YC' => $bonus['ORI_BONUS_YC'] + $bonus['ORI_BONUS_YC_EXTRA'],
- 'ORI_BONUS_VIP' => $bonus['ORI_BONUS_VIP'],
- 'ORI_BONUS_STANDARD' => $standardBonus,
- 'ORI_CAPPED_BONUS_QY' => $bonus['ORI_CAPPED_BONUS_QY'], // 团队奖封顶前的奖金
- 'BONUS_QUARTER' => $bonus['BONUS_QUARTER'],
- 'ORI_BONUS_QUARTER' => $bonus['ORI_BONUS_QUARTER'],
- 'BONUS_TOURISM' => $tourismBonus, // 旅游奖
- 'BONUS_VILLA' => $villaBonus, // 房奖
- 'BONUS_GARAGE' => $garageBonus, // 车奖
- //以下没有用
- 'BONUS_FW' => 0,
- 'BONUS_FX' => $bonus['BONUS_FX'],
- 'BONUS_LS' => $bonus['BONUS_LS'],
- 'BONUS_BT' => $bonus['BONUS_BT'],
- 'BONUS_BT_PROD' => $bonus['BONUS_BT_PROD'],
- 'BONUS_BT_TOOL' => $bonus['BONUS_BT_TOOL'],
- 'DEDUCT_ZR' => $bonus['DEDUCT_ZR'],
- 'BONUS_FL' => $bonus['BONUS_FL'],
- 'BONUS_CF' => $bonus['BONUS_CF'],
- 'BONUS_LX' => $bonus['BONUS_LX'],
- 'SHOULD_QY' => $bonus['BONUS_QY'],
- 'SHOULD_DEDUCT_ZR' => $bonus['DEDUCT_ZR'],
- 'PV_1L' => $perfData['PV_1L_TOUCH'],//TOUCH为碰业绩
- 'QY_1L' => $perfData['PV_1L_TOUCH'] + $pervSurplusPerf['SURPLUS_1L'],
- 'SURPLUS_1L' => $perfData['SURPLUS_1L'],
- 'PV_2L' => $perfData['PV_2L_TOUCH'],
- 'QY_2L' => $perfData['PV_2L_TOUCH'] + $pervSurplusPerf['SURPLUS_2L'],
- 'SURPLUS_2L' => $perfData['SURPLUS_2L'],
- 'PV_3L' => $perfData['PV_3L_TOUCH'],
- 'QY_3L' => $perfData['PV_3L_TOUCH'] + $pervSurplusPerf['SURPLUS_3L'],
- 'SURPLUS_3L' => $perfData['SURPLUS_3L'],
- 'PV_4L' => $perfData['PV_4L_TOUCH'],
- 'QY_4L' => $perfData['PV_4L_TOUCH'] + $pervSurplusPerf['SURPLUS_4L'],
- 'SURPLUS_4L' => $perfData['SURPLUS_4L'],
- 'PV_5L' => $perfData['PV_5L_TOUCH'],
- 'QY_5L' => $perfData['PV_5L_TOUCH'] + $pervSurplusPerf['SURPLUS_5L'],
- 'SURPLUS_5L' => $perfData['SURPLUS_5L'],
- 'PV_PCS' => $perfData['PV_PCS'],
- 'PV_LS_TOUCH' => 0.00,
- 'SURPLUS_LS' => 0.00,
- 'QY_LS' => 0.00,
- 'PV_TOUCH' => Tool::formatPrice($perfData['PV_1L_TOUCH'] + $perfData['PV_2L_TOUCH'] + $perfData['PV_3L_TOUCH'] + $perfData['PV_4L_TOUCH'] + $perfData['PV_5L_TOUCH'] + $perfData['PV_LS_TOUCH']),
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_YEAR' => $this->_calcYear,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'CALCULATED_AT' => Date::nowTime(),
- 'P_CALC_MONTH' => Date::ociToDate($this->_calcYearMonth, Date::OCI_TIME_FORMAT_SHORT_MONTH),
- 'CREATED_AT' => Date::nowTime(),
- ];
- $resend = [];
- unset($bonus, $realBonusGx, $realBonusGl, $bonusReal);
- return ['result'=>$result,'resend'=>$resend];
- }
- /**
- * 根据本有收入计算基础积分
- * @param int $offset
- * @return bool
- */
- public function calcBaseScore(int $offset=0) {
- if (!$this->_isCalcMonth) {
- return true;
- }
- echo sprintf("时间:[%s]基础积分,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- //查询本月的,每人的累计总收入
- $allData = CalcBonus::findUseDbCalc()->select('USER_ID, SUM(BONUS_TOTAL) AS TOTAL_SUM, SUM(ORI_BONUS_BD) AS BD_TOTAL_SUM')->where('CALC_MONTH=:CALC_MONTH', [':CALC_MONTH' => $this->_calcYearMonth])->groupBy('USER_ID')->orderBy('USER_ID DESC')->offset($offset)->limit($this->_limit)->asArray()->all();
- if ($allData) {
- foreach ($allData as $everyData) {
- $validTotalSum = $everyData['TOTAL_SUM'] - $everyData['BD_TOTAL_SUM'];
- if( $validTotalSum <=0 ) continue;
- //达不到 见习主任级别,不产生基础积分
- $userBaseInfo = CalcCache::getUserInfo($everyData['USER_ID'], $this->_periodNum);
- $userEmpLevel = $this->_empLevelConfig[$userBaseInfo['EMP_LV']];
- $userEmpLevelSort = $userEmpLevel['SORT'] ?? EmployLevel::EMP_LEVEL_SORT['NO_LEVEL'];
- unset($userBaseInfo, $userEmpLevel);
- if( $userEmpLevelSort < EmployLevel::EMP_LEVEL_SORT['JX_ZR_LEVEL'] ) {
- unset($userEmpLevelSort);
- continue;
- }
- unset($userEmpLevelSort);
- //根据总收入获取积分
- $baseScore = $this->_getBaseScoreByTotalBonus($validTotalSum);
- //根据用户的级别判断 能否得到级别积分
- if( $baseScore > 0 ) {
- CalcCache::nowMonthScore($everyData['USER_ID'], $this->_periodNum, [
- 'BASE_SCORE' => $baseScore,
- ]);
- CalcCache::addHasScoreUsers($everyData['USER_ID'], $this->_periodNum);
- }
- unset($everyData, $validTotalSum, $baseScore);
- }
- unset($allData);
- return $this->calcBaseScore($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 循环积分入库
- * @param int $offset
- * @return bool
- * @throws \yii\db\Exception
- */
- public function loopWriteScore(int $offset = 0) {
- if(!$this->_isCalcMonth){
- return true;
- }
- echo sprintf("时间:[%s]积分入库,当前offset为:【%s】" . PHP_EOL, date('Y-m-d H:i:s', time()) , $offset);
- // 从缓存列表里面从底层往上倒序获取会员
- $allData = CalcCache::getHasScoreUsers($this->_periodNum, $offset, $this->_limit);
- if($allData){
- $insertDataMonthScore = [];
- foreach($allData as $userId){
- $monthScoreData = CalcCache::nowMonthScore($userId, $this->_periodNum);
- $totalScore = $monthScoreData['BASE_SCORE'] + $monthScoreData['LEVEL_SCORE'] + $monthScoreData['UPGRADE_SCORE'];
- if( $totalScore <= 0 ) continue;
- $insertDataMonthScore[] = [
- 'USER_ID' => $userId,
- 'BASE_SCORE' => $monthScoreData['BASE_SCORE'],
- 'LEVEL_SCORE' => $monthScoreData['LEVEL_SCORE'],
- 'UPGRADE_SCORE' => $monthScoreData['UPGRADE_SCORE'],
- 'TOTAL_SCORE' => $totalScore,
- 'PERIOD_NUM' => $this->_periodNum,
- 'CALC_MONTH' => $this->_calcYearMonth,
- 'CREATED_AT' => Date::nowTime(),
- ];
- unset($userId, $monthScoreData, $totalScore);
- }
- ScoreMonth::batchInsert($insertDataMonthScore);
- unset($insertDataMonthScore, $allData);
- return $this->loopWriteScore($offset + $this->_limit);
- }
- unset($allData);
- return true;
- }
- /**
- * 根据总收入获取相应的基础积分
- * @param $totalBonus
- * @return int|mixed
- */
- private function _getBaseScoreByTotalBonus($totalBonus) {
- $baseScoreConfig = Json::decode($this->_sysConfig['baseScore']['VALUE']);
- $baseScore = 0;
- foreach ($baseScoreConfig as $everyScoreData) {
- if( $totalBonus < $everyScoreData['monthTotalPvMin'] ) continue;
- if( $everyScoreData['monthTotalPvMax'] != 0 && $totalBonus >= $everyScoreData['monthTotalPvMax'] ) continue;
- $baseScore = $everyScoreData['score'];
- unset($everyScoreData);
- break;
- }
- unset($baseScoreConfig, $totalBonus);
- return $baseScore;
- }
- // 判断是否满足月最低消费
- public function _isMonthPerfLimit($userId) {
- $userMonthTotal = PerfMonth::find()->where(
- 'USER_ID=:USER_ID AND CALC_MONTH=:CALC_MONTH',
- ['USER_ID'=>$userId, 'CALC_MONTH'=>$this->_calcYearMonth]
- )
- ->asArray()
- ->one();
- $fxPvStatus = false;
- if (isset($userMonthTotal['PV_PCS']) && $userMonthTotal['PV_PCS'] >= $this->_sysConfig['monthPcsPvFxCondition']['VALUE']) {
- $fxPvStatus = true;
- }
-
- return $fxPvStatus;
- }
- }
|