RebateService.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  1. <?php
  2. namespace app\data\service;
  3. use think\admin\Exception;
  4. use think\admin\extend\CodeExtend;
  5. use think\admin\Service;
  6. /**
  7. * 系统实时返利服务
  8. * Class RebateService
  9. * @package app\data\service
  10. */
  11. class RebateService extends Service
  12. {
  13. const PRIZE_01 = 'PRIZE01';
  14. const PRIZE_02 = 'PRIZE02';
  15. const PRIZE_03 = 'PRIZE03';
  16. const PRIZE_04 = 'PRIZE04';
  17. const PRIZE_05 = 'PRIZE05';
  18. const PRIZE_06 = 'PRIZE06';
  19. const PRIZE_07 = 'PRIZE07';
  20. const PRIZES = [
  21. self::PRIZE_01 => ['code' => self::PRIZE_01, 'name' => '首推奖励', 'func' => '_prize01'],
  22. self::PRIZE_02 => ['code' => self::PRIZE_02, 'name' => '复购奖励', 'func' => '_prize02'],
  23. self::PRIZE_03 => ['code' => self::PRIZE_03, 'name' => '直属团队', 'func' => '_prize03'],
  24. self::PRIZE_04 => ['code' => self::PRIZE_04, 'name' => '间接团队', 'func' => '_prize04'],
  25. self::PRIZE_05 => ['code' => self::PRIZE_05, 'name' => '差额奖励', 'func' => '_prize05'],
  26. self::PRIZE_06 => ['code' => self::PRIZE_06, 'name' => '管理奖励', 'func' => '_prize06'],
  27. self::PRIZE_07 => ['code' => self::PRIZE_07, 'name' => '升级奖励', 'func' => '_prize07'],
  28. ];
  29. /**
  30. * 用户数据
  31. * @var array
  32. */
  33. protected $user;
  34. /**
  35. * 订单数据
  36. * @var array
  37. */
  38. protected $order;
  39. /**
  40. * 奖励到账时机
  41. * @var integer
  42. */
  43. protected $status;
  44. /**
  45. * 推荐用户
  46. * @var array
  47. */
  48. protected $from1;
  49. protected $from2;
  50. /**
  51. * 绑定数据表
  52. * @var string
  53. */
  54. private $table = 'DataUserRebate';
  55. /**
  56. * 执行订单返利处理
  57. * @param string $orderNo
  58. * @throws Exception
  59. * @throws \think\db\exception\DataNotFoundException
  60. * @throws \think\db\exception\DbException
  61. * @throws \think\db\exception\ModelNotFoundException
  62. */
  63. public function execute(string $orderNo)
  64. {
  65. // 获取订单数据
  66. $map = ['order_no' => $orderNo, 'payment_status' => 1];
  67. $this->order = $this->app->db->name('ShopOrder')->where($map)->find();
  68. if (empty($this->order)) throw new Exception('订单不存在');
  69. if ($this->order['payment_type'] === 'balance') return;
  70. //throw new Exception('余额支付不反利');
  71. // 检查订单参与返利
  72. if ($this->order['amount_total'] <= 0) throw new Exception('订单金额为零');
  73. if ($this->order['rebate_amount'] <= 0) throw new Exception('订单返利为零');
  74. // 获取用户数据
  75. $map = ['id' => $this->order['uid'], 'deleted' => 0];
  76. $this->user = $this->app->db->name('DataUser')->where($map)->find();
  77. if (empty($this->user)) throw new Exception('用户不存在');
  78. // 获取直接代理数据
  79. if ($this->order['puid1'] > 0) {
  80. $map = ['id' => $this->order['puid1']];
  81. $this->from1 = $this->app->db->name('DataUser')->where($map)->find();
  82. if (empty($this->from1)) throw new Exception('直接代理不存在');
  83. }
  84. // 获取间接代理数据
  85. if ($this->order['puid2'] > 0) {
  86. $map = ['id' => $this->order['puid2']];
  87. $this->from2 = $this->app->db->name('DataUser')->where($map)->find();
  88. if (empty($this->from2)) throw new Exception('间接代理不存在');
  89. }
  90. // 批量发放配置奖励
  91. foreach (self::PRIZES as $vo) if (method_exists($this, $vo['func'])) {
  92. $this->app->log->notice("订单 {$orderNo} 开始发放 [{$vo['func']}] {$vo['name']}");
  93. $this->{$vo['func']}();
  94. $this->app->log->notice("订单 {$orderNo} 完成发放 [{$vo['func']}] {$vo['name']}");
  95. }
  96. }
  97. /**
  98. * 返利服务初始化
  99. * @return void
  100. * @throws \think\db\exception\DataNotFoundException
  101. * @throws \think\db\exception\DbException
  102. * @throws \think\db\exception\ModelNotFoundException
  103. */
  104. protected function initialize()
  105. {
  106. // 返利奖励到账时机
  107. // settl_type 为 1 支付后立即到账
  108. // settl_type 为 2 确认后立即到账
  109. $this->status = $this->config('settl_type') > 1 ? 0 : 1;
  110. }
  111. /**
  112. * 获取配置数据
  113. * @param ?string $name 配置名称
  114. * @return array|string
  115. * @throws \think\db\exception\DataNotFoundException
  116. * @throws \think\db\exception\DbException
  117. * @throws \think\db\exception\ModelNotFoundException
  118. */
  119. public function config(?string $name = null)
  120. {
  121. static $data = [];
  122. if (empty($data)) $data = sysdata('RebateRule');
  123. return is_null($name) ? $data : ($data[$name] ?? '');
  124. }
  125. /**
  126. * 用户首推奖励
  127. * @return boolean
  128. * @throws \think\db\exception\DataNotFoundException
  129. * @throws \think\db\exception\DbException
  130. * @throws \think\db\exception\ModelNotFoundException
  131. */
  132. protected function _prize01(): bool
  133. {
  134. if (empty($this->from1)) return false;
  135. $map = ['order_uid' => $this->user['id']];
  136. if ($this->app->db->name($this->table)->where($map)->count() > 0) return false;
  137. if (!$this->checkPrizeStatus(self::PRIZE_01, $this->from1['vip_code'])) return false;
  138. // 创建返利奖励记录
  139. $key = "{$this->from1['vip_code']}_{$this->user['vip_code']}";
  140. $map = ['type' => self::PRIZE_01, 'order_no' => $this->order['order_no'], 'order_uid' => $this->order['uid']];
  141. if ($this->config("frist_state_vip_{$key}") && $this->app->db->name($this->table)->where($map)->count() < 1) {
  142. $value = $this->config("frist_value_vip_{$key}");
  143. if ($this->config("frist_type_vip_{$key}") == 1) {
  144. $val = floatval($value ?: '0.00');
  145. $name = "{$this->name(self::PRIZE_01)},每单 {$val} 元";
  146. } else {
  147. $val = floatval($value * $this->order['rebate_amount'] / 100);
  148. $name = "{$this->name(self::PRIZE_01)},订单 {$value}%";
  149. }
  150. // 写入返利记录
  151. $this->writeRabate($this->from1['id'], $map, $name, $val);
  152. }
  153. return true;
  154. }
  155. /**
  156. * 检查等级是否有奖励
  157. * @param string $prize 奖励规则
  158. * @param integer $level 用户等级
  159. * @return boolean
  160. */
  161. private function checkPrizeStatus(string $prize, int $level): bool
  162. {
  163. $map = [['number', '=', $level], ['rebate_rule', 'like', "%,{$prize},%"]];
  164. return $this->app->db->name('BaseUserUpgrade')->where($map)->count() > 0;
  165. }
  166. /**
  167. * 获取奖励名称
  168. * @param string $prize
  169. * @return string
  170. */
  171. public function name(string $prize): string
  172. {
  173. return self::PRIZES[$prize]['name'] ?? $prize;
  174. }
  175. /**
  176. * 写返利记录
  177. * @param int $uid
  178. * @param array $map
  179. * @param string $name
  180. * @param float $amount
  181. * @throws \think\db\exception\DbException
  182. */
  183. private function writeRabate(int $uid, array $map, string $name, float $amount)
  184. {
  185. $this->app->db->name($this->table)->insert(array_merge($map, [
  186. 'uid' => $uid,
  187. 'date' => date('Y-m-d'),
  188. 'code' => CodeExtend::uniqidDate(20, 'R'),
  189. 'name' => $name,
  190. 'amount' => $amount,
  191. 'status' => $this->status,
  192. 'order_no' => $this->order['order_no'],
  193. 'order_uid' => $this->order['uid'],
  194. 'order_amount' => $this->order['amount_total'],
  195. ]));
  196. // 刷新用户返利统计
  197. UserRebateService::instance()->amount($uid);
  198. }
  199. /**
  200. * 用户复购奖励
  201. * @return boolean
  202. * @throws \think\db\exception\DataNotFoundException
  203. * @throws \think\db\exception\DbException
  204. * @throws \think\db\exception\ModelNotFoundException
  205. */
  206. protected function _prize02(): bool
  207. {
  208. $map = [];
  209. $map[] = ['order_uid', '=', $this->user['id']];
  210. $map[] = ['order_no', '<>', $this->order['order_no']];
  211. if ($this->app->db->name($this->table)->where($map)->count() < 1) return false;
  212. // 检查上级可否奖励
  213. if (empty($this->from1) || empty($this->from1['vip_code'])) return false;
  214. if (!$this->checkPrizeStatus(self::PRIZE_02, $this->from1['vip_code'])) return false;
  215. // 创建返利奖励记录
  216. $key = "vip_{$this->from1['vip_code']}_{$this->user['vip_code']}";
  217. $map = ['type' => self::PRIZE_02, 'order_no' => $this->order['order_no'], 'order_uid' => $this->order['uid']];
  218. if ($this->config("repeat_state_{$key}") && $this->app->db->name($this->table)->where($map)->count() < 1) {
  219. $value = $this->config("repeat_value_{$key}");
  220. if ($this->config("repeat_type_{$key}") == 1) {
  221. $val = floatval($value ?: '0.00');
  222. $name = "{$this->name(self::PRIZE_02)},每人 {$val} 元";
  223. } else {
  224. $val = floatval($value * $this->order['rebate_amount'] / 100);
  225. $name = "{$this->name(self::PRIZE_02)},订单 {$value}%";
  226. }
  227. // 写入返利记录
  228. $this->writeRabate($this->from1['id'], $map, $name, $val);
  229. }
  230. return true;
  231. }
  232. /**
  233. * 用户直属团队
  234. * @return boolean
  235. * @throws \think\db\exception\DataNotFoundException
  236. * @throws \think\db\exception\DbException
  237. * @throws \think\db\exception\ModelNotFoundException
  238. */
  239. private function _prize03(): bool
  240. {
  241. if (empty($this->from1)) return false;
  242. if (!$this->checkPrizeStatus(self::PRIZE_03, $this->from1['vip_code'])) return false;
  243. // 创建返利奖励记录
  244. $key = "{$this->user['vip_code']}";
  245. $map = ['type' => self::PRIZE_03, 'order_no' => $this->order['order_no'], 'order_uid' => $this->order['uid']];
  246. if ($this->config("direct_state_vip_{$key}") && $this->app->db->name($this->table)->where($map)->count() < 1) {
  247. $rate = $this->config("direct_value_vip_{$key}");
  248. $name = "{$this->name(self::PRIZE_03)},订单 {$rate}%";
  249. $amount = floatval($rate * $this->order['rebate_amount'] / 100);
  250. // 写入返利记录
  251. $this->writeRabate($this->from1['id'], $map, $name, $amount);
  252. }
  253. return true;
  254. }
  255. /**
  256. * 用户间接团队
  257. * @return boolean
  258. * @throws \think\db\exception\DataNotFoundException
  259. * @throws \think\db\exception\DbException
  260. * @throws \think\db\exception\ModelNotFoundException
  261. */
  262. private function _prize04(): bool
  263. {
  264. if (empty($this->from2)) return false;
  265. if (!$this->checkPrizeStatus(self::PRIZE_04, $this->from2['vip_code'])) return false;
  266. $key = "{$this->user['vip_code']}";
  267. $map = ['type' => self::PRIZE_04, 'order_no' => $this->order['order_no'], 'order_uid' => $this->order['uid']];
  268. if ($this->config("indirect_state_vip_{$key}") && $this->app->db->name($this->table)->where($map)->count() < 1) {
  269. $rate = $this->config("indirect_value_vip_{$key}");
  270. $name = "{$this->name(self::PRIZE_04)},订单 {$rate}%";
  271. $amount = floatval($rate * $this->order['rebate_amount'] / 100);
  272. // 写入返利记录
  273. $this->writeRabate($this->from2['id'], $map, $name, $amount);
  274. }
  275. return true;
  276. }
  277. /**
  278. * 用户差额奖励
  279. * @return false
  280. * @throws \think\db\exception\DataNotFoundException
  281. * @throws \think\db\exception\DbException
  282. * @throws \think\db\exception\ModelNotFoundException
  283. */
  284. private function _prize05(): bool
  285. {
  286. $puids = array_reverse(str2arr($this->user['path'], '-'));
  287. if (empty($puids) || $this->order['amount_total'] <= 0) return false;
  288. // 获取可以参与奖励的代理
  289. $vips = $this->app->db->name('BaseUserUpgrade')->whereLike('rebate_rule', '%,' . self::PRIZE_05 . ',%')->column('number');
  290. $users = $this->app->db->name('DataUser')->whereIn('vip_code', $vips)->whereIn('id', $puids)->orderField('id', $puids)->select()->toArray();
  291. // 查询需要计算奖励的商品
  292. foreach ($this->app->db->name('ShopOrderItem')->where(['order_no' => $this->order['order_no']])->cursor() as $item) {
  293. $itemJson = $this->app->db->name('BaseUserDiscount')->where(['status' => 1, 'deleted' => 0])->value('items');
  294. if (!empty($itemJson) && is_array($rules = json_decode($itemJson, true))) {
  295. [$tVip, $tRate] = [$item['vip_code'], $item['discount_rate']];
  296. foreach ($rules as $rule) if ($rule['level'] > $tVip) foreach ($users as $user) if ($user['vip_code'] > $tVip) {
  297. if ($tRate > $rule['discount'] && $tRate < 100) {
  298. $map = ['uid' => $user['id'], 'type' => self::PRIZE_05];
  299. $map['code'] = "{$this->order['order_no']}#{$item['id']}#{$tVip}.{$user['vip_code']}";
  300. if ($this->app->db->name($this->table)->where($map)->count() < 1) {
  301. $dRate = ($tRate - $rule['discount']) / 100;
  302. $name = "等级差额奖励{$tVip}#{$user['vip_code']}商品的{$dRate}%";
  303. $amount = $dRate * $item['total_selling'];
  304. // 写入用户返利记录
  305. $this->writeRabate($user['id'], $map, $name, $amount);
  306. }
  307. [$tVip, $tRate] = [$user['vip_code'], $rule['discount']];
  308. }
  309. }
  310. }
  311. }
  312. return true;
  313. }
  314. /**
  315. * 用户管理奖励发放
  316. * @return boolean
  317. * @throws \think\db\exception\DataNotFoundException
  318. * @throws \think\db\exception\DbException
  319. * @throws \think\db\exception\ModelNotFoundException
  320. */
  321. private function _prize06(): bool
  322. {
  323. $puids = array_reverse(str2arr($this->user['path'], '-'));
  324. if (empty($puids) || $this->order['amount_total'] <= 0) return false;
  325. // 记录原始等级
  326. $prevLevel = $this->user['vip_code'];
  327. // 获取可以参与奖励的代理
  328. $vips = $this->app->db->name('BaseUserUpgrade')->whereLike('rebate_rule', '%,' . self::PRIZE_06 . ',%')->column('number');
  329. foreach ($this->app->db->name('DataUser')->whereIn('vip_code', $vips)->whereIn('id', $puids)->orderField('id', $puids)->cursor() as $user) {
  330. if ($user['vip_code'] > $prevLevel) {
  331. if (($amount = $this->_prize06amount($prevLevel + 1, $user['vip_code'])) > 0.00) {
  332. $map = ['uid' => $user['id'], 'type' => self::PRIZE_06, 'order_no' => $this->order['order_no'], 'order_uid' => $this->order['uid']];
  333. if ($this->app->db->name($this->table)->where($map)->count() < 1) {
  334. $name = "{$this->name(self::PRIZE_06)},[ VIP{$prevLevel} > VIP{$user['vip_code']} ] 每单 {$amount} 元";
  335. $this->writeRabate($user['id'], $map, $name, $amount);
  336. }
  337. }
  338. $prevLevel = $user['vip_code'];
  339. }
  340. }
  341. return true;
  342. }
  343. /**
  344. * 计算两等级之间的管理奖差异
  345. * @param integer $prevLevel
  346. * @param integer $nextLevel
  347. * @return float
  348. * @throws \think\db\exception\DataNotFoundException
  349. * @throws \think\db\exception\DbException
  350. * @throws \think\db\exception\ModelNotFoundException
  351. */
  352. private function _prize06amount(int $prevLevel, int $nextLevel): float
  353. {
  354. if ($this->config("manage_type_vip_{$nextLevel}") == 2) {
  355. $amount = 0.00;
  356. foreach (range($prevLevel, $nextLevel) as $level) {
  357. [$state, $value] = [$this->config("manage_state_vip_{$level}"), $this->config("manage_value_vip_{$level}")];
  358. if ($state && $value > 0) $amount += $value;
  359. }
  360. return floatval($amount);
  361. } else {
  362. if ($this->config("manage_state_vip_{$nextLevel}")) {
  363. return floatval($this->config("manage_value_vip_{$nextLevel}"));
  364. } else {
  365. return floatval(0);
  366. }
  367. }
  368. }
  369. /**
  370. * 用户升级奖励发放
  371. * @return boolean
  372. * @throws \think\db\exception\DataNotFoundException
  373. * @throws \think\db\exception\DbException
  374. * @throws \think\db\exception\ModelNotFoundException
  375. */
  376. private function _prize07(): bool
  377. {
  378. if (empty($this->from1)) return false;
  379. if ($this->order['order_no'] !== $this->user['vip_order']) return false;
  380. if (!$this->checkPrizeStatus(self::PRIZE_07, $this->from1['vip_code'])) return false;
  381. // 创建返利奖励记录
  382. $key = "{$this->user['vip_code']}";
  383. $map = ['type' => self::PRIZE_07, 'order_no' => $this->order['order_no'], 'order_uid' => $this->order['uid']];
  384. if ($this->config("upgrade_state_vip_{$key}") && $this->app->db->name($this->table)->where($map)->count() < 1) {
  385. $value = $this->config("upgrade_value_vip_{$key}");
  386. if ($this->config("upgrade_type_vip_{$key}") == 1) {
  387. $val = floatval($value ?: '0.00');
  388. $name = "{$this->name(self::PRIZE_07)},每人 {$val} 元";
  389. } else {
  390. $val = floatval($value * $this->order['rebate_amount'] / 100);
  391. $name = "{$this->name(self::PRIZE_07)},订单 {$value}%";
  392. }
  393. // 写入返利记录
  394. $this->writeRabate($this->from1['id'], $map, $name, $val);
  395. }
  396. return true;
  397. }
  398. }