UserAmount.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?php
  2. namespace app\data\command;
  3. use app\data\model\DataUser;
  4. use app\data\service\UserBalanceService;
  5. use app\data\service\UserRebateService;
  6. use think\admin\Command;
  7. use think\admin\Exception;
  8. use think\console\Input;
  9. use think\console\Output;
  10. /**
  11. * 用户余额及返利重算处理
  12. * Class UserBalance
  13. * @package app\data\command
  14. */
  15. class UserAmount extends Command
  16. {
  17. protected function configure()
  18. {
  19. $this->setName('xdata:UserAmount');
  20. $this->setDescription('批量重新计算余额返利');
  21. }
  22. /**
  23. * @param Input $input
  24. * @param Output $output
  25. * @return void
  26. * @throws Exception
  27. */
  28. protected function execute(Input $input, Output $output)
  29. {
  30. [$total, $count, $error] = [DataUser::mk()->count(), 0, 0];
  31. foreach (DataUser::mk()->field('id')->cursor() as $user) try {
  32. $this->queue->message($total, ++$count, "刷新用户 [{$user['id']}] 余额及返利开始");
  33. UserRebateService::amount($user['id']) && UserBalanceService::amount($user['id']);
  34. $this->queue->message($total, $count, "刷新用户 [{$user['id']}] 余额及返利完成", 1);
  35. } catch (\Exception $exception) {
  36. $error++;
  37. $this->queue->message($total, $count, "刷新用户 [{$user['id']}] 余额及返利失败, {$exception->getMessage()}", 1);
  38. }
  39. $this->setQueueSuccess("此次共处理 {$total} 个刷新操作, 其中有 {$error} 个刷新失败。");
  40. }
  41. }