| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\command;
- use app\model\user\User;
- use app\services\user\AwardIntegralServices;
- use Swoole\Process;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- /**
- * 重置密码
- * Class ResetAdminPwd
- * @package app\command
- */
- class CheckAchievement extends Command
- {
- protected function configure()
- {
- // 指令配置
- $this->setName('checkAchievement')
- ->setDescription('Check User Achievement');
- }
- /**
- * @param Input $input
- * @param Output $output
- * @return int|void|null
- */
- protected function execute(Input $input, Output $output)
- {
- $process = new Process(function () use ($output) {
- /** @var AwardIntegralServices $service */
- $service = app()->make(AwardIntegralServices::class);
- $users = User::where('level', '>', 0)->select();
- foreach ($users as $v) {
- $achievement = $service->getAchievement($v['uid']);
- $month_achievement = $service->getLastMonthAchievement($v['uid']);
- $output->info($this->log($v['uid'] . '总业绩:' . $achievement . '月业绩:' . $month_achievement));
- }
- });
- $process->start();
- Process::wait(true);
- $output->info('处理完毕');
- }
- protected function log($str)
- {
- return date('Y-m-d H:i:s') . ' ' . $str . PHP_EOL;
- }
- }
|