截流自动化的商城平台
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.

DistributionSettingLogic.php 3.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. namespace app\admin\logic\distribution;
  3. use app\common\basics\Logic;
  4. use app\common\logic\DistributionLogic;
  5. use app\common\model\distribution\Distribution;
  6. use app\common\model\user\User;
  7. use app\common\server\ConfigServer;
  8. use think\facade\Db;
  9. class DistributionSettingLogic extends Logic
  10. {
  11. /**
  12. * @notes 获取分销配置
  13. * @return array
  14. * @author Tab
  15. * @date 2021/8/31 17:45
  16. */
  17. public static function getConfig()
  18. {
  19. $config = [
  20. // 分销功能 0-关闭(默认) 1-开启
  21. 'is_open' => ConfigServer::get('distribution', 'is_open', 0),
  22. // 分销层级 1-一级分销 2-二级分销(默认)
  23. 'level' => ConfigServer::get('distribution', 'level', 2),
  24. // 商品详情是否显示佣金 0-不显示(默认) 1-默认
  25. 'is_show_earnings' => ConfigServer::get('distribution', 'is_show_earnings', 0),
  26. // 详情页佣金可见用户 0-全部用户 1-分销商
  27. 'show_earnings_scope' => ConfigServer::get('distribution', 'show_earnings_scope', 0),
  28. // 开通分销会员条件 1-无条件 2-申请分销(默认) 3-指定分销
  29. 'apply_condition' => ConfigServer::get('distribution', 'apply_condition', 2),
  30. // 佣金计算方式 1-商品实际支付金额(默认)
  31. 'cale_method' => ConfigServer::get('distribution', 'cale_method', 1),
  32. // 结算时机 1-订单完成后(默认)
  33. 'settlement' => ConfigServer::get('distribution', 'settlement', 1),
  34. // 结算时机 订单完成后多少天内(默认7天)
  35. 'settlement_days' => ConfigServer::get('distribution', 'settlement_days', 7),
  36. ];
  37. return $config;
  38. }
  39. /**
  40. * @notes 分销设置
  41. * @param $params
  42. * @return bool
  43. * @author Tab
  44. * @date 2021/9/2 14:47
  45. */
  46. public static function set($params)
  47. {
  48. Db::startTrans();
  49. try {
  50. $allowFields = ['is_open', 'level', 'is_show_earnings', 'apply_condition', 'cale_method', 'settlement_days', 'show_earnings_scope'];
  51. foreach ($allowFields as $field) {
  52. if(isset($params[$field])) {
  53. ConfigServer::set('distribution', $field, $params[$field]);
  54. }
  55. if($field == 'apply_condition' && isset($params[$field]) && $params[$field] == 1) {
  56. // 开通分销会员无条件时,所有会员均成为分销会员
  57. self::distribution();
  58. }
  59. }
  60. Db::commit();
  61. return true;
  62. } catch (\Exception $e) {
  63. Db::rollback();
  64. self::$error = $e->getMessage();
  65. return false;
  66. }
  67. }
  68. /**
  69. * @notes 全员分销
  70. * @author Tab
  71. * @date 2021/9/2 14:38
  72. */
  73. public static function distribution()
  74. {
  75. // 将非分销会员变为分销会员
  76. Distribution::where('is_distribution', 0)->update([
  77. 'is_distribution' => 1
  78. ]);
  79. // 获取所有分销会员id
  80. $distributionIds = Distribution::distinct(true)->column('user_id');
  81. // 查找未生成分销会员基础信息表的会员
  82. $notDistributionIds = User::where([
  83. ['id', 'not in', $distributionIds],
  84. ['del', '=', 0],
  85. ])->column('id');
  86. foreach($notDistributionIds as $userId) {
  87. // 生成分销会员基础信息表
  88. DistributionLogic::add($userId);
  89. }
  90. }
  91. }