mirror of
https://github.com/crmeb/CRMEB.git
synced 2026-01-02 01:08:14 +00:00
428 lines
17 KiB
PHP
428 lines
17 KiB
PHP
<?php
|
||
// +----------------------------------------------------------------------
|
||
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
||
// +----------------------------------------------------------------------
|
||
// | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
|
||
// +----------------------------------------------------------------------
|
||
// | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
|
||
// +----------------------------------------------------------------------
|
||
// | Author: CRMEB Team <admin@crmeb.com>
|
||
// +----------------------------------------------------------------------
|
||
|
||
namespace app\services\order;
|
||
|
||
|
||
use app\dao\order\StoreOrderDao;
|
||
use app\services\BaseServices;
|
||
use app\services\coupon\StoreCouponIssueServices;
|
||
use app\services\message\service\StoreServiceServices;
|
||
use app\services\message\sms\SmsSendServices;
|
||
use app\services\user\MemberCardServices;
|
||
use app\services\user\UserBillServices;
|
||
use app\services\user\UserBrokerageFrozenServices;
|
||
use app\services\user\UserLevelServices;
|
||
use app\services\user\UserServices;
|
||
use app\services\wechat\WechatUserServices;
|
||
use app\jobs\RoutineTemplateJob;
|
||
use app\jobs\SmsAdminJob;
|
||
use app\jobs\WechatTemplateJob as TemplateJob;
|
||
use crmeb\services\SystemConfigService;
|
||
|
||
use crmeb\utils\Str;
|
||
use think\exception\ValidateException;
|
||
use think\facade\Log;
|
||
|
||
/**
|
||
* 订单收货
|
||
* Class StoreOrderTakeServices
|
||
* @package app\services\order
|
||
* @method get(int $id, ?array $field = []) 获取一条
|
||
*/
|
||
class StoreOrderTakeServices extends BaseServices
|
||
{
|
||
/**
|
||
* 构造方法
|
||
* StoreOrderTakeServices constructor.
|
||
* @param StoreOrderDao $dao
|
||
*/
|
||
public function __construct(StoreOrderDao $dao)
|
||
{
|
||
$this->dao = $dao;
|
||
}
|
||
|
||
/**
|
||
* 用户订单收货
|
||
* @param $uni
|
||
* @param $uid
|
||
* @return bool
|
||
*/
|
||
public function takeOrder(string $uni, int $uid)
|
||
{
|
||
$order = $this->dao->getUserOrderDetail($uni, $uid);
|
||
if (!$order) {
|
||
throw new ValidateException('订单不存在!');
|
||
}
|
||
/** @var StoreOrderServices $orderServices */
|
||
$orderServices = app()->make(StoreOrderServices::class);
|
||
$order = $orderServices->tidyOrder($order);
|
||
if ($order['_status']['_type'] != 2) {
|
||
throw new ValidateException('订单状态错误!');
|
||
}
|
||
$order->status = 2;
|
||
/** @var StoreOrderStatusServices $statusService */
|
||
$statusService = app()->make(StoreOrderStatusServices::class);
|
||
$res = $order->save() && $statusService->save([
|
||
'oid' => $order['id'],
|
||
'change_type' => 'user_take_delivery',
|
||
'change_message' => '用户已收货',
|
||
'change_time' => time()
|
||
]);
|
||
$res = $res && $this->storeProductOrderUserTakeDelivery($order);
|
||
if (!$res) {
|
||
throw new ValidateException('收货失败');
|
||
}
|
||
return $order;
|
||
}
|
||
|
||
/**
|
||
* 订单确认收货
|
||
* @param $order
|
||
* @return bool
|
||
*/
|
||
public function storeProductOrderUserTakeDelivery($order, bool $isTran = true)
|
||
{
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
$userInfo = $userServices->get((int)$order['uid']);
|
||
//获取购物车内的商品标题
|
||
/** @var StoreOrderCartInfoServices $orderInfoServices */
|
||
$orderInfoServices = app()->make(StoreOrderCartInfoServices::class);
|
||
$storeName = $orderInfoServices->getCarIdByProductTitle($order['cart_id']);
|
||
$storeTitle = Str::substrUTf8($storeName, 20, 'UTF-8', '');
|
||
|
||
$res = $this->transaction(function () use ($order, $userInfo, $storeTitle) {
|
||
//赠送积分
|
||
$res1 = $this->gainUserIntegral($order, $userInfo, $storeTitle);
|
||
//返佣
|
||
$res2 = $this->backOrderBrokerage($order, $userInfo);
|
||
//经验
|
||
$res3 = $this->gainUserExp($order, $userInfo);
|
||
if (!($res1 && $res2 && $res3)) {
|
||
throw new ValidateException('收货失败!');
|
||
}
|
||
return true;
|
||
}, $isTran);
|
||
|
||
if ($res) {
|
||
try {
|
||
// 收货成功后置队列
|
||
event('order.orderTake', [$order, $userInfo, $storeTitle]);
|
||
} catch (\Throwable $e) {
|
||
}
|
||
return true;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 赠送积分
|
||
* @param $order
|
||
* @param $userInfo
|
||
* @param $storeTitle
|
||
* @return bool
|
||
*/
|
||
public function gainUserIntegral($order, $userInfo, $storeTitle)
|
||
{
|
||
$res2 = true;
|
||
if (!$userInfo) {
|
||
return true;
|
||
}
|
||
// 营销产品送积分
|
||
if (isset($order['combination_id']) && $order['combination_id']) {
|
||
return true;
|
||
}
|
||
if (isset($order['seckill_id']) && $order['seckill_id']) {
|
||
return true;
|
||
}
|
||
if (isset($order['bargain_id']) && $order['bargain_id']) {
|
||
return true;
|
||
}
|
||
/** @var UserBillServices $userBillServices */
|
||
$userBillServices = app()->make(UserBillServices::class);
|
||
if ($order['gain_integral'] > 0) {
|
||
$res2 = false != $userBillServices->income('pay_give_integral', $order['uid'], $order['gain_integral'], $userInfo['integral'], $order['id']);
|
||
}
|
||
$order_integral = 0;
|
||
$res3 = true;
|
||
$order_give_integral = sys_config('order_give_integral');
|
||
if ($order['pay_price'] && $order_give_integral) {
|
||
$order_integral = bcmul($order_give_integral, (string)$order['pay_price'], 0);
|
||
$res3 = false != $userBillServices->income('order_give_integral', $order['uid'], $order_integral, $userInfo['integral'], $order['id']);
|
||
}
|
||
$give_integral = $order_integral + $order['gain_integral'];
|
||
if ($give_integral > 0) {
|
||
$integral = $userInfo['integral'] + $give_integral;
|
||
$userInfo->integral = $integral;
|
||
$res1 = false != $userInfo->save();
|
||
$res = $res1 && $res2 && $res3;
|
||
$this->sendUserIntegral($order, $give_integral, $integral, $storeTitle);
|
||
return $res;
|
||
}
|
||
return true;
|
||
}
|
||
|
||
/**
|
||
* 一级返佣
|
||
* @param $orderInfo
|
||
* @param $userInfo
|
||
* @return bool
|
||
*/
|
||
public function backOrderBrokerage($orderInfo, $userInfo)
|
||
{
|
||
//商城分销功能是否开启 0关闭1开启
|
||
if (!sys_config('brokerage_func_status')) return true;
|
||
|
||
// 营销产品不返佣金
|
||
if (isset($orderInfo['combination_id']) && $orderInfo['combination_id']) {
|
||
return true;
|
||
}
|
||
if (isset($orderInfo['seckill_id']) && $orderInfo['seckill_id']) {
|
||
return true;
|
||
}
|
||
if (isset($orderInfo['bargain_id']) && $orderInfo['bargain_id']) {
|
||
return true;
|
||
}
|
||
|
||
// 当前用户不存在 没有上级 或者 当用用户上级时自己 直接返回
|
||
if (!$userInfo || !$userInfo['spread_uid'] || $userInfo['spread_uid'] == $orderInfo['uid']) {
|
||
return true;
|
||
}
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
if (!$userServices->checkUserPromoter($userInfo['spread_uid'])) {
|
||
return $this->backOrderBrokerageTwo($orderInfo, $userInfo);
|
||
}
|
||
$cartId = is_string($orderInfo['cart_id']) ? json_decode($orderInfo['cart_id'], true) : $orderInfo['cart_id'];
|
||
/** @var StoreOrderCartInfoServices $cartServices */
|
||
$cartServices = app()->make(StoreOrderCartInfoServices::class);
|
||
$brokeragePrice = $cartServices->getProductBrokerage($cartId);
|
||
// 返佣金额小于等于0 直接返回不返佣金
|
||
if ($brokeragePrice <= 0) {
|
||
return true;
|
||
}
|
||
//TODO 获取上级推广员信息
|
||
$spreadPrice = $userServices->value(['uid' => $userInfo['spread_uid']], 'brokerage_price');
|
||
// 上级推广员返佣之后的金额
|
||
$balance = bcadd($spreadPrice, $brokeragePrice, 2);
|
||
// 添加推广记录
|
||
/** @var UserBillServices $userBillServices */
|
||
$userBillServices = app()->make(UserBillServices::class);
|
||
$res1 = $userBillServices->income('get_brokerage', $userInfo['spread_uid'], [
|
||
'nickname' => $userInfo['nickname'],
|
||
'pay_price' => floatval($orderInfo['pay_price']),
|
||
'number' => floatval($brokeragePrice)
|
||
], $balance, $orderInfo['id']);
|
||
// 添加用户余额
|
||
$res2 = $userServices->bcInc($userInfo['spread_uid'], 'brokerage_price', $brokeragePrice, 'uid');
|
||
if ($res2) {
|
||
/** @var UserBrokerageFrozenServices $frozenService */
|
||
$frozenService = app()->make(UserBrokerageFrozenServices::class);
|
||
$res2 = $frozenService->saveBrokage($userInfo['spread_uid'], $brokeragePrice, $res1->id, $orderInfo['order_id']);
|
||
//给上级发送获得佣金的模板消息
|
||
$this->sendBackOrderBrokerage($orderInfo, $userInfo['spread_uid'], $brokeragePrice);
|
||
}
|
||
// 一级返佣成功 跳转二级返佣
|
||
$res = $res1 && $res2 && $this->backOrderBrokerageTwo($orderInfo, $userInfo);
|
||
return $res;
|
||
}
|
||
|
||
|
||
/**
|
||
* 二级推广返佣
|
||
* @param $orderInfo
|
||
* @param $userInfo
|
||
* @return bool
|
||
*/
|
||
public function backOrderBrokerageTwo($orderInfo, $userInfo)
|
||
{
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
// 获取上推广人
|
||
$userInfoTwo = $userServices->get((int)$userInfo['spread_uid']);
|
||
// 上推广人不存在 或者 上推广人没有上级 或者 当用用户上上级时自己 直接返回
|
||
if (!$userInfoTwo || !$userInfoTwo['spread_uid'] || $userInfoTwo['spread_uid'] == $orderInfo['uid']) {
|
||
return true;
|
||
}
|
||
// 获取后台分销类型 1 指定分销 2 人人分销
|
||
if (!$userServices->checkUserPromoter($userInfoTwo['spread_uid'])) {
|
||
return true;
|
||
}
|
||
$cartId = is_string($orderInfo['cart_id']) ? json_decode($orderInfo['cart_id'], true) : $orderInfo['cart_id'];
|
||
/** @var StoreOrderCartInfoServices $cartServices */
|
||
$cartServices = app()->make(StoreOrderCartInfoServices::class);
|
||
$brokeragePrice = $cartServices->getProductBrokerage($cartId, false);
|
||
// 返佣金额小于等于0 直接返回不返佣金
|
||
if ($brokeragePrice <= 0) {
|
||
return true;
|
||
}
|
||
// 获取上上级推广员信息
|
||
$spreadPrice = $userServices->value(['uid' => $userInfoTwo['spread_uid']], 'brokerage_price');
|
||
// 获取上上级推广员返佣之后余额
|
||
$balance = bcadd($spreadPrice, $brokeragePrice, 2);
|
||
// 添加返佣记录
|
||
/** @var UserBillServices $userBillServices */
|
||
$userBillServices = app()->make(UserBillServices::class);
|
||
$res1 = $userBillServices->income('get_two_brokerage', $userInfoTwo['spread_uid'], [
|
||
'nickname' => $userInfo['nickname'],
|
||
'pay_price' => floatval($orderInfo['pay_price']),
|
||
'number' => floatval($brokeragePrice)
|
||
], $balance, $orderInfo['id']);
|
||
if ($res1) {
|
||
/** @var UserBrokerageFrozenServices $frozenService */
|
||
$frozenService = app()->make(UserBrokerageFrozenServices::class);
|
||
$res1 = $frozenService->saveBrokage($userInfoTwo['spread_uid'], $brokeragePrice, $res1->id, $orderInfo['order_id']);
|
||
}
|
||
// 添加用户余额
|
||
$res2 = $userServices->bcInc($userInfoTwo['spread_uid'], 'brokerage_price', $brokeragePrice, 'uid');
|
||
//给上级发送获得佣金的模板消息
|
||
$this->sendBackOrderBrokerage($orderInfo, $userInfoTwo['spread_uid'], $brokeragePrice);
|
||
return $res1 && $res2;
|
||
}
|
||
|
||
/**佣金到账发送模板消息
|
||
* @param $orderInfo
|
||
* @param $spread_uid
|
||
* @param $brokeragePrice
|
||
*/
|
||
public function sendBackOrderBrokerage($orderInfo, $spread_uid, $brokeragePrice)
|
||
{
|
||
/** @var UserServices $userServices */
|
||
$userServices = app()->make(UserServices::class);
|
||
/** @var WechatUserServices $wechatServices */
|
||
$wechatServices = app()->make(WechatUserServices::class);
|
||
$userType = $userServices->value(['uid' => $spread_uid], 'user_type');
|
||
/** @var StoreOrderCartInfoServices $storeOrderCartInfoService */
|
||
$storeOrderCartInfoService = app()->make(StoreOrderCartInfoServices::class);
|
||
$cartInfo = $storeOrderCartInfoService->getOrderCartInfo($orderInfo['id']);
|
||
if ($cartInfo) {
|
||
$cartInfo = array_column($cartInfo, 'cart_info');
|
||
$goodsPrice = 0;
|
||
$goodsName = "";
|
||
foreach ($cartInfo as $k => $v) {
|
||
$goodsName .= $v['productInfo']['store_name'];
|
||
$goodsPrice += $v['productInfo']['price'];
|
||
}
|
||
}
|
||
if (strtolower($userType) == 'routine') {
|
||
$openid = $wechatServices->uidToOpenid($spread_uid, 'routine');
|
||
if ($openid) RoutineTemplateJob::dispatchDo('sendOrderBrokerageSuccess', [$openid, $brokeragePrice, $goodsName]);
|
||
} else {
|
||
$openid = $wechatServices->uidToOpenid($spread_uid, 'wechat');
|
||
if ($openid) TemplateJob::dispatchDo('sendOrderBrokerageSuccess', [$openid, $brokeragePrice, $goodsName, $goodsPrice, $orderInfo['add_time']]);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 赠送积分发送模板消息
|
||
* @param $order
|
||
* @param $give_integral
|
||
* @param $integral
|
||
*/
|
||
public function sendUserIntegral($order, $give_integral, $integral, $storeTitle)
|
||
{
|
||
/** @var WechatUserServices $wechatServices */
|
||
$wechatServices = app()->make(WechatUserServices::class);
|
||
//小程序
|
||
$openid = $wechatServices->uidToOpenid($order['uid'], 'routine');
|
||
RoutineTemplateJob::dispatchDo('sendUserIntegral', [$openid, $order, $storeTitle, $give_integral, $integral]);
|
||
}
|
||
|
||
/**
|
||
* 赠送经验
|
||
* @param $order
|
||
* @param $userInfo
|
||
* @return bool
|
||
*/
|
||
public function gainUserExp($order, $userInfo)
|
||
{
|
||
if (!$userInfo) {
|
||
return true;
|
||
}
|
||
/** @var UserBillServices $userBillServices */
|
||
$userBillServices = app()->make(UserBillServices::class);
|
||
$order_exp = 0;
|
||
$res3 = true;
|
||
$order_give_exp = sys_config('order_give_exp');
|
||
if ($order['pay_price'] && $order_give_exp) {
|
||
$order_exp = bcmul($order_give_exp, (string)$order['pay_price'], 2);
|
||
$res3 = false != $userBillServices->income('order_give_exp', $order['uid'], $order_exp, $userInfo['exp'], $order['id']);
|
||
}
|
||
$res = true;
|
||
if ($order_exp > 0) {
|
||
$exp = $userInfo['exp'] + $order_exp;
|
||
$userInfo->exp = $exp;
|
||
$res1 = false != $userInfo->save();
|
||
$res = $res1 && $res3;
|
||
}
|
||
//用户升级事件
|
||
event('user.userLevel', [$order['uid']]);
|
||
return $res;
|
||
}
|
||
|
||
/**
|
||
* 自动收货
|
||
* @return bool
|
||
*/
|
||
public function autoTakeOrder()
|
||
{
|
||
//7天前时间戳
|
||
$systemDeliveryTime = (int)sys_config('system_delivery_time', 0);
|
||
//0为取消自动收货功能
|
||
if ($systemDeliveryTime == 0) {
|
||
return true;
|
||
}
|
||
$sevenDay = strtotime(date('Y-m-d H:i:s', strtotime('-' . $systemDeliveryTime . ' day')));
|
||
/** @var StoreOrderStoreOrderStatusServices $service */
|
||
$service = app()->make(StoreOrderStoreOrderStatusServices::class);
|
||
$orderList = $service->getTakeOrderIds([
|
||
'change_time' => $sevenDay,
|
||
'is_del' => 0,
|
||
'paid' => 1,
|
||
'status' => 1,
|
||
'change_type' => ['delivery_goods', 'delivery_fictitious', 'delivery']
|
||
]);
|
||
foreach ($orderList as $order) {
|
||
if ($order['status'] == 2) {
|
||
continue;
|
||
}
|
||
if ($order['paid'] == 1 && $order['status'] == 1) {
|
||
$data['status'] = 2;
|
||
} else if ($order['pay_type'] == 'offline') {
|
||
$data['status'] = 2;
|
||
} else {
|
||
continue;
|
||
}
|
||
try {
|
||
$this->transaction(function () use ($order, $data) {
|
||
/** @var StoreOrderStatusServices $statusService */
|
||
$statusService = app()->make(StoreOrderStatusServices::class);
|
||
$res = $this->dao->update($order['id'], $data) && $statusService->save([
|
||
'oid' => $order['id'],
|
||
'change_type' => 'take_delivery',
|
||
'change_message' => '已收货[自动收货]',
|
||
'change_time' => time()
|
||
]);
|
||
$res = $res && $this->storeProductOrderUserTakeDelivery($order, false);
|
||
if (!$res) {
|
||
throw new ValidateException('订单号' . $order['order_id'] . '自动收货失败');
|
||
}
|
||
});
|
||
} catch (\Throwable $e) {
|
||
Log::error('自动收货失败,失败原因:' . $e->getMessage());
|
||
}
|
||
|
||
}
|
||
}
|
||
}
|