截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AccountLogLogic.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. namespace app\common\logic;
  3. use app\common\basics\Logic;
  4. use app\common\model\user\User;
  5. use app\common\model\AccountLog;
  6. use app\admin\logic\user\LevelLogic;
  7. class AccountLogLogic extends Logic
  8. {
  9. /**
  10. * Notes:记录会员账户流水,如果变动类型是成长值,且是增加的,则调用更新会员等级方法。该方法应在添加用户账户后调用
  11. * @param int $user_id 用户id
  12. * @param float $amount 变动数量
  13. * @param int $change_type 变动类型:1-增加;2-减少
  14. * @param int $source_type 来源类型
  15. * @param string $remark 说明
  16. * @param string $source_id 来源id
  17. * @param string $source_sn 来源单号
  18. * @param string $extra 额外字段说明
  19. * @return bool
  20. * @throws \think\db\exception\DataNotFoundException
  21. * @throws \think\db\exception\ModelNotFoundException
  22. * @throws \think\exception\DbException
  23. */
  24. public static function AccountRecord($user_id,$amount,$change_type,$source_type,$remark ='',$source_id ='',$source_sn='',$extra=''){
  25. $user = User::findOrEmpty($user_id);
  26. if($user->isEmpty()){
  27. return false;
  28. }
  29. $type = AccountLog::getChangeType($source_type);
  30. $left_amount = 0;
  31. switch ($type){
  32. case 'money':
  33. $left_amount = $user->user_money;
  34. break;
  35. case 'integral':
  36. $left_amount = $user->user_integral;
  37. break;
  38. case 'growth':
  39. $left_amount = $user->user_growth;
  40. break;
  41. case 'earnings':
  42. $left_amount = $user->earnings;
  43. }
  44. $account_log = new AccountLog();
  45. $account_log->log_sn = createSn('account_log','log_sn','',4);
  46. $account_log->user_id = $user_id;
  47. $account_log->source_type = $source_type;
  48. $account_log->source_id = $source_id;
  49. $account_log->source_sn = $source_sn;
  50. $account_log->change_amount = $amount;
  51. $account_log->left_amount = $left_amount;
  52. $account_log->remark = AccountLog::getRemarkDesc($source_type,$source_sn,$remark);
  53. $account_log->extra = $extra;
  54. $account_log->change_type = $change_type;
  55. $account_log->create_time = time();
  56. $account_log->save();
  57. //更新会员等级
  58. if($type === 'growth' && $change_type == 1){
  59. LevelLogic::updateUserLevel([$user]);
  60. }
  61. return true;
  62. }
  63. }