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

PayLogic.php 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815
  1. <?php
  2. namespace app\api\logic;
  3. use app\admin\logic\distribution\DistributionLevelLogic;
  4. use app\common\basics\Logic;
  5. use app\common\enum\NoticeEnum;
  6. use app\common\enum\OrderEnum;
  7. use app\common\enum\OrderLogEnum;
  8. use app\common\enum\PayEnum;
  9. use app\common\logic\GoodsVirtualLogic;
  10. use app\common\logic\IntegralLogic;
  11. use app\common\logic\OrderLogLogic;
  12. use app\common\logic\PayNotifyLogic;
  13. use app\common\model\Client_;
  14. use app\common\model\distribution\DistributionGoods;
  15. use app\common\model\distribution\DistributionLevel;
  16. use app\common\model\distribution\DistributionOrderGoods;
  17. use app\common\model\goods\Goods;
  18. use app\common\model\AccountLog;
  19. use app\common\logic\AccountLogLogic;
  20. use app\common\model\integral\IntegralOrder;
  21. use app\common\model\order\OrderGoods;
  22. use app\common\model\order\OrderTrade;
  23. use app\common\model\order\Order;
  24. use app\common\model\RechargeOrder;
  25. use app\common\model\shop\Shop;
  26. use app\common\model\user\User;
  27. use app\common\server\JsonServer;
  28. use app\common\server\WeChatPayServer;
  29. use app\common\server\ConfigServer;
  30. use think\Exception;
  31. use think\facade\Db;
  32. use app\common\server\AliPayServer;
  33. /**
  34. * Class PayLogic
  35. * @package app\api\logic
  36. */
  37. class PayLogic extends Logic
  38. {
  39. /**
  40. * @notes 检验支付状态
  41. * @param $trade_id
  42. * @return bool
  43. * @throws \think\db\exception\DataNotFoundException
  44. * @throws \think\db\exception\DbException
  45. * @throws \think\db\exception\ModelNotFoundException
  46. * @author suny
  47. * @date 2021/7/13 6:24 下午
  48. */
  49. public static function checkPayStatus($trade_id)
  50. {
  51. $where = [
  52. 'trade_id' => $trade_id,
  53. 'pay_status' => PayEnum::ISPAID,
  54. 'del' => 0
  55. ];
  56. $check = Order::where($where)->find();
  57. if ($check) {
  58. return true;
  59. }
  60. return false;
  61. }
  62. /**
  63. * @notes 余额支付
  64. * @param $order_id
  65. * @param $form
  66. * @return \think\response\Json
  67. * @throws \think\db\exception\DataNotFoundException
  68. * @throws \think\db\exception\DbException
  69. * @throws \think\db\exception\ModelNotFoundException
  70. * @throws \think\exception\PDOException
  71. * @author suny
  72. * @date 2021/7/13 6:24 下午
  73. */
  74. public static function balancePay($order_id, $form)
  75. {
  76. switch ($form) {
  77. case "trade":
  78. $order = OrderTrade::find($order_id);
  79. if (self::checkPayStatus($order_id)) {
  80. $order['pay_status'] = PayEnum::ISPAID;
  81. }
  82. $order_mobiles = Order::where('trade_id', $order_id)->column('mobile');
  83. break;
  84. case "order":
  85. $order = Order::where([
  86. ['del', '=', 0],
  87. ['id', '=', $order_id]
  88. ])->find();
  89. $order_mobiles = [ $order['mobile'] ?? '' ];
  90. break;
  91. case "integral":
  92. $order = IntegralOrder::where(['del' => 0, 'id' => $order_id])->find();
  93. $order_mobiles = [ $order['mobile'] ?? '' ];
  94. break;
  95. }
  96. if (empty($order)) {
  97. return JsonServer::error('订单不存在');
  98. }
  99. if (isset($order['pay_status']) && $order['pay_status'] == PayEnum::ISPAID) {
  100. return JsonServer::error('订单已支付');
  101. }
  102. $user_balance = User::where(['id' => $order['user_id']])->value('user_money');
  103. if ($user_balance < $order['order_amount']) {
  104. return JsonServer::error('余额不足');
  105. }
  106. // 积分订单
  107. if($form == 'integral') {
  108. $result = self::payIntegralOrder($order);
  109. if (true === $result) {
  110. return JsonServer::success('支付成功', [], 20001);
  111. }
  112. return JsonServer::error($result);
  113. }
  114. Db::startTrans();
  115. try {
  116. $User = new User();
  117. if ($order['order_amount'] != 0) {
  118. $user_balance_dec = User::where(['id' => $order['user_id']])
  119. ->dec('user_money', $order['order_amount'])
  120. ->update();
  121. if (!$user_balance_dec) {
  122. Db::rollback();
  123. return JsonServer::error('余额扣除失败');
  124. }
  125. }
  126. //记录余额
  127. $acountLogResult = AccountLogLogic::AccountRecord($order['user_id'], $order['order_amount'], 2, AccountLog::balance_pay_order);
  128. if ($acountLogResult === false) {
  129. Db::rollback();
  130. return JsonServer::error('账户明细记录添加失败');
  131. }
  132. if ($form == "trade") {
  133. $order_id = Order::where('trade_id', $order_id)->column('id');
  134. }
  135. $orderStatusChange = self::changOrderStatus($order_id);
  136. if ($orderStatusChange == false) {
  137. Db::rollback();
  138. return JsonServer::error('子订单状态改变失败');
  139. }
  140. // 生成分销订单
  141. self::distributionOrderGoods($order_id);
  142. // 更新分销会员等级
  143. DistributionLevelLogic::updateDistributionLevel($order['user_id']);
  144. if($form == "trade"){
  145. $orders = Order::where([['id','in',$order_id]])->select();
  146. foreach ($orders as $item) {
  147. // 增加商品销量
  148. $order_goods = OrderGoods::where('order_id', $item['id'])->select()->toArray();
  149. foreach ($order_goods as $order_good) {
  150. Goods::where('id', $order_good['goods_id'])
  151. ->inc('sales_actual', $order_good['goods_num'])
  152. ->update();
  153. }
  154. //修改用户消费累计额度
  155. $user = User::find($item['user_id']);
  156. $user->total_order_amount = ['inc', $item['order_amount']];
  157. $user->save();
  158. //赠送成长值
  159. $growth_ratio = ConfigServer::get('transaction', 'money_to_growth', 0);
  160. if ($growth_ratio > 0) {
  161. $able_get_growth = floor($item['total_amount'] / $growth_ratio);
  162. $user->where('id', $item['user_id'])
  163. ->inc('user_growth', $able_get_growth)
  164. ->update();
  165. AccountLogLogic::AccountRecord($item['user_id'], $able_get_growth, 1, AccountLog::order_give_growth, '', $item['id'], $item['order_sn']);
  166. }
  167. //赠送积分
  168. $open_award = ConfigServer::get('order_award', 'open_award', 0);
  169. if ($open_award == 1) {
  170. $award_event = ConfigServer::get('order_award', 'award_event', 0);
  171. $award_ratio = ConfigServer::get('order_award', 'award_ratio', 0);
  172. if ($award_ratio > 0) {
  173. $award_integral = floor($item['order_amount'] * ($award_ratio / 100));
  174. }
  175. }
  176. Order::update(['award_integral_status' => $award_event ?? 0,'award_integral' => $award_integral ?? 0],['id'=>$item['id']]);
  177. //通知用户
  178. foreach ($order_mobiles ?? [] as $order_mobile) {
  179. event('Notice', [
  180. 'scene' => NoticeEnum::ORDER_PAY_NOTICE,
  181. 'mobile' => $order_mobile,
  182. 'params' => ['order_id' => $item['id'], 'user_id' => $item['user_id']]
  183. ]);
  184. }
  185. //通知商家
  186. if (!empty($item['shop']['mobile'])) {
  187. event('Notice', [
  188. 'scene' => NoticeEnum::USER_PAID_NOTICE_SHOP,
  189. 'mobile' => $item['shop']['mobile'],
  190. 'params' => ['order_id' => $item['id'], 'user_id' => $item['user_id']]
  191. ]);
  192. }
  193. // 打印小票
  194. event('Printer', [
  195. 'order_id' => $item['id'],
  196. ]);
  197. OrderLogLogic::record(
  198. OrderLogEnum::TYPE_USER,
  199. OrderLogEnum::USER_PAID_ORDER,
  200. $item['id'],
  201. $item['user_id'],
  202. OrderLogEnum::getLogDesc(OrderLogEnum::USER_PAID_ORDER)
  203. );
  204. }
  205. // 虚拟商品更新订单信息
  206. GoodsVirtualLogic::afterPayVirtualDelivery($order_id);
  207. } else{
  208. // 增加商品销量
  209. $order_goods = OrderGoods::where('order_id', $order['id'])->select();
  210. foreach ($order_goods as $order_good) {
  211. Goods::where('id', $order_good['goods_id'])
  212. ->inc('sales_actual', $order_good['goods_num'])
  213. ->update();
  214. }
  215. //修改用户消费累计额度
  216. $user = User::find($order['user_id']);
  217. $user->total_order_amount = ['inc', $order['order_amount']];
  218. $user->save();
  219. //赠送成长值
  220. $growth_ratio = ConfigServer::get('transaction', 'money_to_growth', 0);
  221. if ($growth_ratio > 0) {
  222. $able_get_growth = floor($order['total_amount'] / $growth_ratio);
  223. $user->where('id', $order['user_id'])
  224. ->inc('user_growth', $able_get_growth)
  225. ->update();
  226. AccountLogLogic::AccountRecord($order['user_id'], $able_get_growth, 1, AccountLog::order_give_growth, '', $order['id'], $order['order_sn']);
  227. }
  228. //赠送积分
  229. $open_award = ConfigServer::get('order_award', 'open_award', 0);
  230. if ($open_award == 1) {
  231. $award_event = ConfigServer::get('order_award', 'award_event', 0);
  232. $award_ratio = ConfigServer::get('order_award', 'award_ratio', 0);
  233. if ($award_ratio > 0) {
  234. $award_integral = floor($order['order_amount'] * ($award_ratio / 100));
  235. }
  236. }
  237. Order::update(['award_integral_status' => $award_event ?? 0,'award_integral' => $award_integral ?? 0],['id'=>$order['id']]);
  238. // 虚拟商品更新订单信息
  239. GoodsVirtualLogic::afterPayVirtualDelivery($order['id']);
  240. //通知用户
  241. foreach ($order_mobiles ?? [] as $order_mobile) {
  242. event('Notice', [
  243. 'scene' => NoticeEnum::ORDER_PAY_NOTICE,
  244. 'mobile' => $order_mobile,
  245. 'params' => ['order_id' => $order['id'], 'user_id' => $order['user_id']]
  246. ]);
  247. }
  248. //通知商家
  249. if (!empty($order['shop']['mobile'])) {
  250. event('Notice', [
  251. 'scene' => NoticeEnum::USER_PAID_NOTICE_SHOP,
  252. 'mobile' => $order['shop']['mobile'],
  253. 'params' => ['order_id' => $order['id'], 'user_id' => $order['user_id']]
  254. ]);
  255. }
  256. // 打印小票
  257. event('Printer', [
  258. 'order_id' => $order['id'],
  259. ]);
  260. OrderLogLogic::record(
  261. OrderLogEnum::TYPE_USER,
  262. OrderLogEnum::USER_PAID_ORDER,
  263. $order['id'],
  264. $order['user_id'],
  265. OrderLogEnum::getLogDesc(OrderLogEnum::USER_PAID_ORDER)
  266. );
  267. }
  268. Db::commit();
  269. return JsonServer::success('支付成功', [], 20001);
  270. } catch (\Exception $e) {
  271. Db::rollback();
  272. return JsonServer::error($e->getMessage());
  273. }
  274. }
  275. /**
  276. * @notes 微信支付
  277. * @param $order_id
  278. * @param $form
  279. * @param $client
  280. * @return \think\response\Json
  281. * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
  282. * @throws \EasyWeChat\Kernel\Exceptions\InvalidConfigException
  283. * @throws \GuzzleHttp\Exception\GuzzleException
  284. * @throws \think\db\exception\DataNotFoundException
  285. * @throws \think\db\exception\DbException
  286. * @throws \think\db\exception\ModelNotFoundException
  287. * @author suny
  288. * @date 2021/7/13 6:24 下午
  289. */
  290. public static function wechatPay($order_id, $form, $client)
  291. {
  292. switch ($form) {
  293. case "trade":
  294. $order = OrderTrade::find($order_id);
  295. if (self::checkPayStatus($order_id)) {
  296. $order['pay_status'] = PayEnum::ISPAID;
  297. }
  298. break;
  299. case "order":
  300. $order = Order::where([
  301. ['del', '=', 0],
  302. ['id', '=', $order_id]
  303. ])->find();
  304. break;
  305. case "recharge":
  306. $order = RechargeOrder::where([
  307. ['id', '=', $order_id]
  308. ])->find();
  309. break;
  310. case "integral":
  311. $order = IntegralOrder::where(['del' => 0, 'id' => $order_id])->find();
  312. break;
  313. }
  314. if (empty($order)) {
  315. return JsonServer::error('订单不存在');
  316. }
  317. if (isset($order['pay_status']) && $order['pay_status'] == PayEnum::ISPAID) {
  318. return JsonServer::error('订单已支付');
  319. }
  320. // 这里进行微信支付
  321. $res = WeChatPayServer::unifiedOrder($form, $order, $client);
  322. if (false === $res) {
  323. return JsonServer::error(WeChatPayServer::getError());
  324. }
  325. if ((is_object($res) || is_string($res)) && $client != Client_::pc) {
  326. $res = (array)($res);
  327. }
  328. if (is_string($res)) {
  329. $data = [
  330. 'code' => 1,
  331. 'msg' => '微信支付发起成功',
  332. 'show' => 0,
  333. 'data' => $res
  334. ];
  335. return json($data);
  336. }
  337. return JsonServer::success('微信支付发起成功', $res, 1);
  338. }
  339. /**
  340. * @notes 支付宝支付
  341. * @param $order_id
  342. * @param $from
  343. * @param $client
  344. * @return bool|string
  345. * @author suny
  346. * @date 2021/7/27 4:22 下午
  347. */
  348. public static function aliPay($order_id , $from , $client)
  349. {
  350. $aliPay = new AliPayServer();
  351. $res = $aliPay->pay($from , $order_id , $client);
  352. return $res;
  353. }
  354. /**
  355. * order表状态改变
  356. */
  357. public static function changOrderStatus($order_id)
  358. {
  359. $where = ['id', '=', $order_id];
  360. if (is_array($order_id)) {
  361. $where = ['id', 'in', $order_id];
  362. }
  363. $deliveryType = Order::where(['id'=>$order_id])->value('delivery_type');
  364. $orderStatus = OrderEnum::ORDER_STATUS_DELIVERY;
  365. //线下自提订单支付完成后订单状态改为待收货
  366. if ($deliveryType == OrderEnum::DELIVERY_TYPE_SELF) {
  367. $orderStatus = OrderEnum::ORDER_STATUS_GOODS;
  368. }
  369. $orders = Order::where([ $where ])
  370. ->update([
  371. 'pay_status' => PayEnum::ISPAID,
  372. 'order_status' => $orderStatus,
  373. 'pay_way' => PayEnum::BALANCE_PAY,
  374. 'pay_time' => time()
  375. ]);
  376. if ($orders) {
  377. return true;
  378. }
  379. return false;
  380. }
  381. /**
  382. * @notes 分销逻辑
  383. * @param $order_id
  384. * @param $user_id
  385. * @author Tab
  386. * @date 2021/9/2 10:48
  387. */
  388. public static function distributionOrderGoods($order_id)
  389. {
  390. if (is_array($order_id)) {
  391. $orderIds = $order_id;
  392. } else {
  393. $orderIds = [$order_id];
  394. }
  395. // 获取分销配置
  396. $distributionConfig = [
  397. 'is_open' => ConfigServer::get('distribution', 'is_open', 0),
  398. 'level' => ConfigServer::get('distribution', 'level', 2),
  399. ];
  400. if(!$distributionConfig['is_open']) {
  401. return false;
  402. }
  403. // 遍历订单
  404. foreach($orderIds as $orderId) {
  405. // 用户信息
  406. $order = Order::where('id', $orderId)->findOrEmpty()->toArray();
  407. $userInfo = self::userInfo($order['user_id']);
  408. // 判断店铺是否开通分销
  409. $isDistribution = Shop::where('id', $order['shop_id'])->value('is_distribution');
  410. if(!$isDistribution) {
  411. // 未开通分销跳过
  412. continue;
  413. }
  414. // 订单信息
  415. $orderInfo = self::orderInfo($orderId);
  416. // 遍历子订单
  417. foreach($orderInfo as $item) {
  418. // 判断商品是否参与分销
  419. $goodsDistribution = self::checkGoodsDistribution($item['goods_id']);
  420. if(empty($goodsDistribution) || !$goodsDistribution['is_distribution']) {
  421. // 商品未参与分销
  422. continue;
  423. }
  424. // 分销层级
  425. switch($distributionConfig['level'])
  426. {
  427. case 1: // 一级分销
  428. self::firstLevelCommission($userInfo, $item, $goodsDistribution);
  429. break;
  430. case 2: // 一级、二级分销
  431. self::firstLevelCommission($userInfo, $item, $goodsDistribution);
  432. self::secondLevelCommission($userInfo, $item, $goodsDistribution);
  433. break;
  434. }
  435. }
  436. }
  437. }
  438. /**
  439. * @notes 用户信息
  440. * @param $userId
  441. * @return mixed
  442. * @author Tab
  443. * @date 2021/9/2 11:02
  444. */
  445. public static function userInfo($userId)
  446. {
  447. $userInfo = User::alias('u')
  448. ->leftJoin('distribution d', 'd.user_id = u.id')
  449. ->field('u.id,u.nickname,u.first_leader,u.second_leader,d.level_id,d.is_distribution,d.is_freeze')
  450. ->where('u.id', $userId)
  451. ->findOrEmpty()
  452. ->toArray();
  453. return $userInfo;
  454. }
  455. /**
  456. * @notes 订单信息
  457. * @param $orderId
  458. * @return mixed
  459. * @author Tab
  460. * @date 2021/9/2 11:05
  461. */
  462. public static function orderInfo($orderId)
  463. {
  464. $orderInfo = OrderGoods::alias('og')
  465. ->leftJoin('order o', 'o.id = og.order_id')
  466. ->field('og.id as order_goods_id,og.order_id,og.goods_id,og.item_id,og.goods_num,og.shop_id,og.total_pay_price,o.user_id')
  467. ->where('og.order_id', $orderId)
  468. ->select()
  469. ->toArray();
  470. return $orderInfo;
  471. }
  472. /**
  473. * @notes 校验商品是否参与分销
  474. * @param $goodsId
  475. * @return array
  476. * @author Tab
  477. * @date 2021/9/2 11:08
  478. */
  479. public static function checkGoodsDistribution($goodsId)
  480. {
  481. $distributionGoods = DistributionGoods::field('goods_id,item_id,level_id,first_ratio,second_ratio,is_distribution,rule')
  482. ->where('goods_id', $goodsId)
  483. ->select()
  484. ->toArray();
  485. if(empty($distributionGoods)) {
  486. return [];
  487. }
  488. return [
  489. 'goods_id' => $distributionGoods[0]['goods_id'],
  490. 'is_distribution' => $distributionGoods[0]['is_distribution'],
  491. 'rule' => $distributionGoods[0]['rule']
  492. ];
  493. }
  494. /**
  495. * @notes 一级分佣
  496. * @param $userInfo
  497. * @param $item
  498. * @param $goodsDistribution
  499. * @return false
  500. * @author Tab
  501. * @date 2021/9/2 11:12
  502. */
  503. public static function firstLevelCommission($userInfo, $item, $goodsDistribution)
  504. {
  505. if(!$userInfo['first_leader']) {
  506. // 没有上级,无需分佣
  507. return false;
  508. }
  509. $firstLeaderInfo = self::userInfo($userInfo['first_leader']);
  510. if(!$firstLeaderInfo['is_distribution'] || $firstLeaderInfo['is_freeze']) {
  511. // 上级不是分销会员 或 分销资格已冻结
  512. return false;
  513. }
  514. $ratioArr = self::getRatio($goodsDistribution, $item, $firstLeaderInfo);
  515. $firstLeaderInfo['ratio'] = $ratioArr['first_ratio'];
  516. $firstLeaderInfo['level'] = 1;
  517. self::addDistributionOrderGoods($item, $firstLeaderInfo);
  518. }
  519. /**
  520. * @notes 获取分佣比例
  521. * @param $goodsDistribution
  522. * @param $item
  523. * @param $userInfo
  524. * @return array
  525. * @author Tab
  526. * @date 2021/9/2 11:14
  527. */
  528. public static function getRatio($goodsDistribution, $item, $userInfo)
  529. {
  530. // 按分销会员等级对应的比例
  531. if($goodsDistribution['rule'] == 1) {
  532. $ratioArr = DistributionLevel::field('first_ratio,second_ratio')
  533. ->where('id', $userInfo['level_id'])
  534. ->findOrEmpty()
  535. ->toArray();
  536. return $ratioArr;
  537. }
  538. // 单独设置的比例
  539. if($goodsDistribution['rule'] == 2) {
  540. $ratioArr = DistributionGoods::field('first_ratio,second_ratio')
  541. ->where([
  542. 'goods_id' => $item['goods_id'],
  543. 'item_id' => $item['item_id'],
  544. 'level_id' => $userInfo['level_id']
  545. ])
  546. ->findOrEmpty()
  547. ->toArray();
  548. return $ratioArr;
  549. }
  550. }
  551. /**
  552. * @notes 二级分佣
  553. * @param $userInfo
  554. * @param $item
  555. * @param $goodsDistribution
  556. * @return false
  557. * @author Tab
  558. * @date 2021/9/2 11:39
  559. */
  560. public static function secondLevelCommission($userInfo, $item, $goodsDistribution)
  561. {
  562. if(!$userInfo['second_leader']) {
  563. // 没有上上级,无需分佣
  564. return false;
  565. }
  566. $secondLeaderInfo = self::userInfo($userInfo['second_leader']);
  567. if(!$secondLeaderInfo['is_distribution'] || $secondLeaderInfo['is_freeze']) {
  568. // 上上级不是分销会员 或 分销资格已冻结
  569. return false;
  570. }
  571. $ratioArr = self::getRatio($goodsDistribution, $item, $secondLeaderInfo);
  572. $secondLeaderInfo['ratio'] = $ratioArr['second_ratio'];
  573. $secondLeaderInfo['level'] = 2;
  574. self::addDistributionOrderGoods($item, $secondLeaderInfo);
  575. }
  576. /**
  577. * @notes 生成分销订单
  578. * @param $item
  579. * @param $userInfo
  580. * @return bool|void
  581. * @author Tab
  582. * @date 2021/9/2 11:17
  583. */
  584. public static function addDistributionOrderGoods($item, $userInfo)
  585. {
  586. $earnings = self::calByPaymentAmount($item, $userInfo);
  587. if($earnings < 0.01) {
  588. return false;
  589. }
  590. $data = [
  591. 'sn' => createSn('distribution_order_goods', 'sn'),
  592. 'user_id' => $userInfo['id'],
  593. 'real_name' => $userInfo['nickname'],
  594. 'level_id' => $userInfo['level_id'],
  595. 'level' => $userInfo['level'],
  596. 'ratio' => $userInfo['ratio'],
  597. 'order_id' => $item['order_id'],
  598. 'order_goods_id' => $item['order_goods_id'],
  599. 'goods_id' => $item['goods_id'],
  600. 'goods_num' => $item['goods_num'],
  601. 'item_id' => $item['item_id'],
  602. 'shop_id' => $item['shop_id'],
  603. 'money' => $earnings,
  604. 'status' => 1
  605. ];
  606. DistributionOrderGoods::create($data);
  607. // 预估佣金通知
  608. event('Notice', [
  609. 'scene' => NoticeEnum::GET_FUTURE_EARNINGS_NOTICE,
  610. 'mobile' => User::where('id', $userInfo['id'])->value('mobile', ''),
  611. 'params' => [
  612. 'user_id' => $userInfo['id'],
  613. 'future_earnings' => $earnings,
  614. ]
  615. ]);
  616. }
  617. /**
  618. * @notes 根据商品实际支付金额计算佣金
  619. * @param $item
  620. * @param $userInfo
  621. * @return float
  622. * @author Tab
  623. * @date 2021/9/2 11:18
  624. */
  625. public static function calByPaymentAmount($item, $userInfo)
  626. {
  627. $earnings = round(($item['total_pay_price'] * $userInfo['ratio'] / 100), 2);
  628. return $earnings;
  629. }
  630. /**
  631. * @notes 分销商品记录
  632. * @param $order_id
  633. * @param $user_id
  634. * @return bool
  635. * @throws \think\db\exception\DataNotFoundException
  636. * @throws \think\db\exception\DbException
  637. * @throws \think\db\exception\ModelNotFoundException
  638. * @throws \think\exception\DbException
  639. * @author suny
  640. * @date 2021/7/13 6:24 下午
  641. */
  642. public static function distributionOrderGoodsOld($order_id, $user_id)
  643. {
  644. $where = ['order_id', '=', $order_id];
  645. if (is_array($order_id)) {
  646. $where = ['order_id', 'in', $order_id];
  647. }
  648. $goods = OrderGoods::where([ $where ])
  649. ->field('id,goods_id,total_pay_price,goods_num,order_id,shop_id')
  650. ->select()->toArray();
  651. $User = new User();
  652. $Goods = new Goods();
  653. $user_leader = $User->where('id', $user_id)->field('first_leader,second_leader,third_leader')->find()->toArray();
  654. foreach ($goods as $key => $value) {
  655. // 商家是否开启分销
  656. $shop_is_distribution = Shop::where('id', $value['shop_id'])->value('is_distribution');
  657. if (!$shop_is_distribution) continue;
  658. // 商品是否开启分销
  659. if ($Goods->where(['id' => $value['goods_id'], 'is_distribution' => 1])->find()) {
  660. $goods_distribution = $Goods->where(['id' => $value['goods_id']])->field('first_ratio,second_ratio,third_ratio')->find()->toArray();
  661. if (!empty($user_leader['first_leader']) && !is_null($user_leader['first_leader'])) {
  662. DistributionOrderGoods::create([
  663. 'sn' => createSn('distribution_order_goods', 'sn'),
  664. 'user_id' => $user_leader['first_leader'],
  665. 'real_name' => $User->where('id', $user_leader['first_leader'])->value('nickname') ?? '',
  666. 'order_id' => $value['order_id'],
  667. 'order_goods_id' => $value['id'],
  668. 'goods_num' => $value['goods_num'],
  669. 'money' => bcdiv(bcmul($value['total_pay_price'], $goods_distribution['first_ratio'], 2), 100, 2),
  670. 'status' => 1,
  671. 'shop_id' => $value['shop_id'],
  672. 'create_time' => time()
  673. ]);
  674. }
  675. if (!empty($user_leader['second_leader']) && !is_null($user_leader['second_leader'])) {
  676. DistributionOrderGoods::create([
  677. 'sn' => createSn('distribution_order_goods', 'sn'),
  678. 'user_id' => $user_leader['second_leader'],
  679. 'real_name' => $User->where('id', $user_leader['second_leader'])->value('nickname') ?? '',
  680. 'order_id' => $value['order_id'],
  681. 'order_goods_id' => $value['id'],
  682. 'goods_num' => $value['goods_num'],
  683. 'money' => bcdiv(bcmul($value['total_pay_price'], $goods_distribution['second_ratio'], 2), 100, 2),
  684. 'status' => 1,
  685. 'shop_id' => $value['shop_id'],
  686. 'create_time' => time()
  687. ]);
  688. }
  689. if (!empty($user_leader['third_leader']) && !is_null($user_leader['third_leader'])) {
  690. DistributionOrderGoods::create([
  691. 'sn' => createSn('distribution_order_goods', 'sn'),
  692. 'user_id' => $user_leader['third_leader'],
  693. 'real_name' => $User->where('id', $user_leader['third_leader'])->value('nickname') ?? '',
  694. 'order_id' => $value['order_id'],
  695. 'order_goods_id' => $value['id'],
  696. 'goods_num' => $value['goods_num'],
  697. 'money' => bcdiv(bcmul($value['total_pay_price'], $goods_distribution['third_ratio'], 2), 100, 2),
  698. 'status' => 1,
  699. 'shop_id' => $value['shop_id'],
  700. 'create_time' => time()
  701. ]);
  702. }
  703. }
  704. }
  705. return true;
  706. }
  707. /**
  708. * @notes 余额支付积分订单
  709. * @param $order
  710. * @return bool|string
  711. * @author 段誉
  712. * @date 2022/3/1 15:02
  713. */
  714. public static function payIntegralOrder($order)
  715. {
  716. try {
  717. if ($order['order_amount'] != 0) {
  718. User::where(['id' => $order['user_id']])
  719. ->dec('user_money', $order['order_amount'])
  720. ->update();
  721. AccountLogLogic::AccountRecord(
  722. $order['user_id'],
  723. $order['order_amount'],
  724. 2,
  725. AccountLog::integral_order_dec_balance,
  726. '',
  727. $order['id'],
  728. $order['order_sn']
  729. );
  730. }
  731. $result = PayNotifyLogic::handle('integral', $order['order_sn']);
  732. if (true !== $result) {
  733. throw new \Exception($result);
  734. }
  735. return true;
  736. } catch (\Exception $e) {
  737. return $e->getMessage();
  738. }
  739. }
  740. }