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.
2771 lines
124 KiB
2771 lines
124 KiB
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
|
|
// +----------------------------------------------------------------------
|
|
// | Copyright (c) 2016~2023 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\jobs\AutoCommentJob;
|
|
use app\services\activity\combination\StorePinkServices;
|
|
use app\services\activity\seckill\StoreSeckillServices;
|
|
use app\services\BaseServices;
|
|
use app\services\other\PosterServices;
|
|
use app\services\pay\OrderPayServices;
|
|
use app\services\pay\PayServices;
|
|
use app\services\product\product\StoreProductLogServices;
|
|
use app\services\serve\ServeServices;
|
|
use app\services\system\attachment\SystemAttachmentServices;
|
|
use app\services\system\store\SystemStoreServices;
|
|
use app\services\user\UserInvoiceServices;
|
|
use app\services\user\UserRechargeServices;
|
|
use app\services\user\UserServices;
|
|
use app\services\product\product\StoreProductReplyServices;
|
|
use app\services\user\UserAddressServices;
|
|
use app\services\user\UserBillServices;
|
|
use app\services\user\UserLevelServices;
|
|
use app\services\wechat\WechatUserServices;
|
|
use crmeb\exceptions\AdminException;
|
|
use crmeb\exceptions\ApiException;
|
|
use crmeb\exceptions\PayException;
|
|
use crmeb\services\CacheService;
|
|
use crmeb\services\easywechat\orderShipping\MiniOrderService;
|
|
use crmeb\services\FormBuilder as Form;
|
|
use crmeb\services\printer\Printer;
|
|
use crmeb\services\SystemConfigService;
|
|
use crmeb\utils\Arr;
|
|
use think\exception\ValidateException;
|
|
use think\facade\Log;
|
|
|
|
/**
|
|
* Class StoreOrderServices
|
|
* @package app\services\order
|
|
* @method getOrderIdsCount(array $ids) 获取订单id下没有删除的订单数量
|
|
* @method StoreOrderDao getUserOrderDetail(string $key, int $uid, array $with) 获取订单详情
|
|
* @method chartTimePrice($start, $stop) 获取当前时间到指定时间的支付金额 管理员
|
|
* @method chartTimeNumber($start, $stop) 获取当前时间到指定时间的支付订单数 管理员
|
|
* @method together(array $where, string $field, string $together = 'sum') 聚合查询
|
|
* @method getBuyCount($uid, $type, $typeId) 获取用户已购买此活动商品的个数
|
|
* @method getDistinctCount(array $where, $field, ?bool $search = true)
|
|
* @method getTrendData($time, $type, $timeType, $str) 用户趋势
|
|
* @method getRegion($time, $channelType) 地域统计
|
|
* @method getProductTrend($time, $timeType, $field, $str) 商品趋势
|
|
* @method getList(array $where, array $field, int $page = 0, int $limit = 0, array $with = [])
|
|
*/
|
|
class StoreOrderServices extends BaseServices
|
|
{
|
|
|
|
/**
|
|
* 发货类型
|
|
* @var string[]
|
|
*/
|
|
public $deliveryType = [
|
|
'send' => '商家配送',
|
|
'express' => '快递配送',
|
|
'fictitious' => '虚拟发货',
|
|
'delivery_part_split' => '拆分部分发货',
|
|
'delivery_split' => '拆分发货完成'
|
|
];
|
|
|
|
/**
|
|
* StoreOrderProductServices constructor.
|
|
* @param StoreOrderDao $dao
|
|
*/
|
|
public function __construct(StoreOrderDao $dao)
|
|
{
|
|
$this->dao = $dao;
|
|
}
|
|
|
|
/**
|
|
* 获取列表
|
|
* @param array $where
|
|
* @param array $field
|
|
* @param array $with
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getOrderList(array $where, array $field = ['*'], array $with = [])
|
|
{
|
|
[$page, $limit] = $this->getPageValue();
|
|
$data = $this->dao->getOrderList($where, $field, $page, $limit, $with);
|
|
$count = $this->dao->count($where, false);
|
|
$data = $this->tidyOrderList($data);
|
|
foreach ($data as &$item) {
|
|
$refund_num = array_sum(array_column($item['refund'], 'refund_num'));
|
|
$cart_num = 0;
|
|
$vipTruePrice = 0;
|
|
foreach ($item['_info'] as $items) {
|
|
$cart_num += $items['cart_info']['cart_num'];
|
|
$vipTruePrice = bcadd((string)$vipTruePrice, (string)$items['cart_info']['vip_truePrice'], 2);
|
|
}
|
|
$item['total_price'] = bcadd($item['total_price'], $vipTruePrice, 2);
|
|
$item['is_all_refund'] = $refund_num == $cart_num;
|
|
}
|
|
return compact('data', 'count');
|
|
}
|
|
|
|
/**
|
|
* 前端订单列表
|
|
* @param array $where
|
|
* @param array|string[] $field
|
|
* @param array $with
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getOrderApiList(array $where, array $field = ['*'], array $with = [])
|
|
{
|
|
[$page, $limit] = $this->getPageValue();
|
|
$data = $this->dao->getOrderList($where, $field, $page, $limit, $with);
|
|
foreach ($data as &$item) {
|
|
$item = $this->tidyOrder($item, true);
|
|
foreach ($item['cartInfo'] ?: [] as $key => $product) {
|
|
if ($item['_status']['_type'] == 3) {
|
|
$item['cartInfo'][$key]['add_time'] = isset($product['add_time']) ? date('Y-m-d H:i', (int)$product['add_time']) : '时间错误';
|
|
}
|
|
$item['cartInfo'][$key]['productInfo']['price'] = $product['truePrice'] ?? 0;
|
|
}
|
|
if (count($item['refund'])) {
|
|
$refund_num = array_sum(array_column($item['refund'], 'refund_num'));
|
|
$cart_num = array_sum(array_column($item['cartInfo'], 'cart_num'));
|
|
$item['is_all_refund'] = $refund_num == $cart_num ? true : false;
|
|
} else {
|
|
$item['is_all_refund'] = false;
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 获取订单数量
|
|
* @param int $uid
|
|
* @return array
|
|
* @throws \ReflectionException
|
|
*/
|
|
public function getOrderData(int $uid = 0)
|
|
{
|
|
$data['order_count'] = (string)$this->dao->count(['uid' => $uid, 'refund_status' => [0, 3], 'pid' => 0, 'is_del' => 0, 'is_system_del' => 0]);
|
|
$data['sum_price'] = (string)$this->dao->sum([
|
|
['uid', '=', $uid],
|
|
['paid', '=', 1],
|
|
['refund_status', '=', 0],
|
|
['pid', '>=', 0]
|
|
], 'pay_price', false);
|
|
$countWhere = ['is_del' => 0, 'is_system_del' => 0];
|
|
if ($uid) {
|
|
$countWhere['uid'] = $uid;
|
|
}
|
|
$data['unpaid_count'] = (string)$this->dao->count(['status' => 0] + $countWhere);
|
|
$data['unshipped_count'] = (string)$this->dao->count(['status' => 1] + $countWhere + ['pid' => 0]);
|
|
$data['received_count'] = (string)$this->dao->count(['status' => 2] + $countWhere + ['pid' => 0]);
|
|
$data['evaluated_count'] = (string)$this->dao->count(['status' => 3] + $countWhere + ['pid' => 0]);
|
|
$data['complete_count'] = (string)$this->dao->count(['status' => 4] + $countWhere + ['pid' => 0]);
|
|
|
|
/** @var StoreOrderRefundServices $storeOrderRefundServices */
|
|
$storeOrderRefundServices = app()->make(StoreOrderRefundServices::class);
|
|
$refund_where = ['is_cancel' => 0];
|
|
if ($uid) $refund_where['uid'] = $uid;
|
|
$data['refunding_count'] = (string)$storeOrderRefundServices->count($refund_where + ['refund_type' => [1, 2, 4, 5]]);
|
|
$data['no_refund_count'] = (string)$storeOrderRefundServices->count($refund_where + ['refund_type' => 3]);
|
|
$data['refunded_count'] = (string)$storeOrderRefundServices->count($refund_where + ['refund_type' => 6]);
|
|
$data['refund_count'] = bcadd(bcadd($data['refunding_count'], $data['refunded_count'], 0), $data['no_refund_count'], 0);
|
|
$data['yue_pay_status'] = (int)sys_config('balance_func_status') && (int)sys_config('yue_pay_status') == 1 ? (int)1 : (int)2;//余额支付 1 开启 2 关闭
|
|
$data['pc_order_count'] = $data['order_count'] + $data['refunding_count'] + $data['refunded_count'];
|
|
$data['pay_weixin_open'] = sys_config('pay_weixin_open', '0') != '0';//微信支付 1 开启 0 关闭
|
|
$data['ali_pay_status'] = sys_config('ali_pay_status', '0') != '0';//支付包支付 1 开启 0 关闭
|
|
$data['friend_pay_status'] = (int)sys_config('friend_pay_status') ?? 0;//好友代付 1 开启 0 关闭
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 订单详情数据格式化
|
|
* @param $order
|
|
* @param bool $detail 是否需要订单商品详情
|
|
* @param bool $isPic 是否需要订单状态图片
|
|
* @return mixed
|
|
*/
|
|
public function tidyOrder($order, bool $detail = false, $isPic = false)
|
|
{
|
|
if ($detail == true && isset($order['id'])) {
|
|
/** @var StoreOrderCartInfoServices $cartServices */
|
|
$cartServices = app()->make(StoreOrderCartInfoServices::class);
|
|
$cartInfos = $cartServices->getCartColunm(['oid' => $order['id']], 'cart_num,surplus_num,cart_info,refund_num', 'unique');
|
|
$info = [];
|
|
/** @var StoreProductReplyServices $replyServices */
|
|
$replyServices = app()->make(StoreProductReplyServices::class);
|
|
foreach ($cartInfos as $k => $cartInfo) {
|
|
$cart = json_decode($cartInfo['cart_info'], true);
|
|
$cart['cart_num'] = $cartInfo['cart_num'];
|
|
$cart['surplus_num'] = $cartInfo['surplus_num'];
|
|
$cart['refund_num'] = $cartInfo['refund_num'];
|
|
$cart['surplus_refund_num'] = $cartInfo['surplus_num'] - $cartInfo['refund_num'];
|
|
$cart['unique'] = $k;
|
|
//新增是否评价字段
|
|
$cart['is_reply'] = $replyServices->count(['unique' => $k]);
|
|
if (isset($cart['productInfo']['attrInfo'])) {
|
|
$cart['productInfo']['attrInfo'] = get_thumb_water($cart['productInfo']['attrInfo']);
|
|
}
|
|
$cart['productInfo'] = get_thumb_water($cart['productInfo']);
|
|
//一种商品买多件 计算总优惠
|
|
$cart['vip_sum_truePrice'] = bcmul($cart['vip_truePrice'], $cart['cart_num'] ? $cart['cart_num'] : 1, 2);
|
|
$cart['is_valid'] = 1;
|
|
array_push($info, $cart);
|
|
unset($cart);
|
|
}
|
|
$order['cartInfo'] = $info;
|
|
}
|
|
/** @var StoreOrderStatusServices $statusServices */
|
|
$statusServices = app()->make(StoreOrderStatusServices::class);
|
|
$status = [];
|
|
if (!$order['paid'] && $order['pay_type'] == 'offline' && !$order['status'] >= 2) {
|
|
$status['_type'] = 9;
|
|
$status['_title'] = '线下付款,未支付';
|
|
$status['_msg'] = '等待商家处理,请耐心等待';
|
|
$status['_class'] = 'nobuy';
|
|
} else if (!$order['paid']) {
|
|
$status['_type'] = 0;
|
|
$status['_title'] = '未支付';
|
|
//系统预设取消订单时间段
|
|
$keyValue = ['order_cancel_time', 'order_activity_time', 'order_bargain_time', 'order_seckill_time', 'order_pink_time'];
|
|
//获取配置
|
|
$systemValue = SystemConfigService::more($keyValue);
|
|
//格式化数据
|
|
$systemValue = Arr::setValeTime($keyValue, is_array($systemValue) ? $systemValue : []);
|
|
if ($order['pink_id'] || $order['combination_id']) {
|
|
$order_pink_time = $systemValue['order_pink_time'] ?: $systemValue['order_activity_time'];
|
|
$time = $order['add_time'] + $order_pink_time * 3600;
|
|
$status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
|
|
} else if ($order['seckill_id']) {
|
|
$order_seckill_time = $systemValue['order_seckill_time'] ?: $systemValue['order_activity_time'];
|
|
$time = $order['add_time'] + $order_seckill_time * 3600;
|
|
$status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
|
|
} else if ($order['bargain_id']) {
|
|
$order_bargain_time = $systemValue['order_bargain_time'] ?: $systemValue['order_activity_time'];
|
|
$time = $order['add_time'] + $order_bargain_time * 3600;
|
|
$status['_msg'] = '请在' . date('m-d H:i:s', $time) . '前完成支付!';
|
|
} else {
|
|
$time = $order['add_time'] + $systemValue['order_cancel_time'] * 3600;
|
|
$status['_msg'] = '请在' . date('m-d H:i:s', (int)$time) . '前完成支付!';
|
|
}
|
|
$status['_class'] = 'nobuy';
|
|
} else if ($order['status'] == 4) {
|
|
if ($order['delivery_type'] == 'send') {//TODO 送货
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery'], 'change_time')) . '服务商已送货';
|
|
$status['_class'] = 'state-ysh';
|
|
} elseif ($order['delivery_type'] == 'express') {//TODO 发货
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery_goods'], 'change_time')) . '服务商已发货';
|
|
$status['_class'] = 'state-ysh';
|
|
} elseif ($order['delivery_type'] == 'split') {//拆分发货
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery_part_split'], 'change_time')) . '服务商已拆分多个包裹发货';
|
|
$status['_class'] = 'state-ysh';
|
|
} else {
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery_fictitious'], 'change_time')) . '服务商已虚拟发货';
|
|
$status['_class'] = 'state-ysh';
|
|
}
|
|
} else if ($order['refund_status'] == 1) {
|
|
if (in_array($order['refund_type'], [0, 1, 2])) {
|
|
$status['_type'] = -1;
|
|
$status['_title'] = '申请退款中';
|
|
$status['_msg'] = '商家审核中,请耐心等待';
|
|
$status['_class'] = 'state-sqtk';
|
|
} elseif ($order['refund_type'] == 4) {
|
|
$status['_type'] = -1;
|
|
$status['_title'] = '申请退款中';
|
|
$status['_msg'] = '商家同意退款,请填写退货订单号';
|
|
$status['_class'] = 'state-sqtk';
|
|
$status['refund_name'] = sys_config('refund_name', '');
|
|
$status['refund_phone'] = sys_config('refund_phone', '');
|
|
$status['refund_address'] = sys_config('refund_address', '');
|
|
} elseif ($order['refund_type'] == 5) {
|
|
$status['_type'] = -1;
|
|
$status['_title'] = '申请退款中';
|
|
$status['_msg'] = '等待商家收货';
|
|
$status['_class'] = 'state-sqtk';
|
|
$status['refund_name'] = sys_config('refund_name', '');
|
|
$status['refund_phone'] = sys_config('refund_phone', '');
|
|
$status['refund_address'] = sys_config('refund_address', '');
|
|
}
|
|
} else if ($order['refund_status'] == 2 || $order['refund_type'] == 6) {
|
|
$status['_type'] = -2;
|
|
$status['_title'] = '已退款';
|
|
$status['_msg'] = '已为您退款,感谢您的支持';
|
|
$status['_class'] = 'state-sqtk';
|
|
} else if ($order['refund_status'] == 3) {
|
|
$status['_type'] = -1;
|
|
$status['_title'] = '部分退款(子订单)';
|
|
$status['_msg'] = '拆分发货,部分退款';
|
|
$status['_class'] = 'state-sqtk';
|
|
} else if ($order['refund_status'] == 4) {
|
|
$status['_type'] = -1;
|
|
$status['_title'] = '子订单已全部申请退款中';
|
|
$status['_msg'] = '拆分发货,全部退款';
|
|
$status['_class'] = 'state-sqtk';
|
|
} else if (!$order['status']) {
|
|
if ($order['pink_id']) {
|
|
/** @var StorePinkServices $pinkServices */
|
|
$pinkServices = app()->make(StorePinkServices::class);
|
|
if ($pinkServices->getCount(['id' => $order['pink_id'], 'status' => 1])) {
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '拼团中';
|
|
$status['_msg'] = '等待其他人参加拼团';
|
|
$status['_class'] = 'state-nfh';
|
|
} else {
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '未发货';
|
|
$status['_msg'] = '商家未发货,请耐心等待';
|
|
$status['_class'] = 'state-nfh';
|
|
}
|
|
} else {
|
|
if ($order['shipping_type'] === 1) {
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '未发货';
|
|
if ($order['advance_id']) {
|
|
$status['_msg'] = date('Y-m-d', $order['cartInfo'][0]['productInfo']['presale_end_time']) . '预售结束后' . $order['cartInfo'][0]['productInfo']['presale_day'] . '天内发货,请耐心等待';
|
|
} else {
|
|
$status['_msg'] = '商家未发货,请耐心等待';
|
|
}
|
|
$status['_class'] = 'state-nfh';
|
|
} else {
|
|
$status['_type'] = 1;
|
|
$status['_title'] = '待核销';
|
|
$status['_msg'] = '待核销,请到核销点进行核销';
|
|
$status['_class'] = 'state-nfh';
|
|
}
|
|
}
|
|
} else if ($order['status'] == 1) {
|
|
if ($order['delivery_type'] == 'send') {//TODO 送货
|
|
$status['_type'] = 2;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery'], 'change_time')) . '服务商已送货';
|
|
$status['_class'] = 'state-ysh';
|
|
} elseif ($order['delivery_type'] == 'express') {//TODO 发货
|
|
$status['_type'] = 2;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery_goods'], 'change_time')) . '服务商已发货';
|
|
$status['_class'] = 'state-ysh';
|
|
} elseif ($order['delivery_type'] == 'split') {//拆分发货
|
|
$status['_type'] = 2;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery_split'], 'change_time')) . '服务商已拆分多个包裹发货';
|
|
$status['_class'] = 'state-ysh';
|
|
} else {
|
|
$status['_type'] = 2;
|
|
$status['_title'] = '待收货';
|
|
$status['_msg'] = date('m月d日H时i分', $statusServices->value(['oid' => $order['id'], 'change_type' => 'delivery_fictitious'], 'change_time')) . '服务商已虚拟发货';
|
|
$status['_class'] = 'state-ysh';
|
|
}
|
|
} else if ($order['status'] == 2) {
|
|
$status['_type'] = 3;
|
|
$status['_title'] = '待评价';
|
|
$status['_msg'] = '已收货,快去评价一下吧';
|
|
$status['_class'] = 'state-ypj';
|
|
} else if ($order['status'] == 3) {
|
|
$status['_type'] = 4;
|
|
$status['_title'] = '交易完成';
|
|
$status['_msg'] = '交易完成,感谢您的支持';
|
|
$status['_class'] = 'state-ytk';
|
|
}
|
|
if (isset($order['pay_type']))
|
|
$status['_payType'] = $status['_type'] == 0 ? '' : PayServices::PAY_TYPE[$order['pay_type']] ?? '其他方式';
|
|
if (isset($order['delivery_type']))
|
|
$status['_deliveryType'] = $this->deliveryType[$order['delivery_type']] ?? '其他方式';
|
|
$order['_status'] = $status;
|
|
$order['_pay_time'] = isset($order['pay_time']) && $order['pay_time'] != null ? date('Y-m-d H:i:s', $order['pay_time']) : '';
|
|
$order['_add_time'] = isset($order['add_time']) ? (strstr((string)$order['add_time'], '-') === false ? date('Y-m-d H:i:s', $order['add_time']) : $order['add_time']) : '';
|
|
|
|
//系统预设取消订单时间段
|
|
$keyValue = ['order_cancel_time', 'order_activity_time', 'order_bargain_time', 'order_seckill_time', 'order_pink_time'];
|
|
//获取配置
|
|
$systemValue = SystemConfigService::more($keyValue);
|
|
//格式化数据
|
|
$systemValue = Arr::setValeTime($keyValue, is_array($systemValue) ? $systemValue : []);
|
|
if ($order['seckill_id']) {
|
|
$secs = $systemValue['order_seckill_time'] ? $systemValue['order_seckill_time'] : $systemValue['order_activity_time'];
|
|
} elseif ($order['bargain_id']) {
|
|
$secs = $systemValue['order_bargain_time'] ? $systemValue['order_bargain_time'] : $systemValue['order_activity_time'];
|
|
} elseif ($order['combination_id']) {
|
|
$secs = $systemValue['order_pink_time'] ? $systemValue['order_pink_time'] : $systemValue['order_activity_time'];
|
|
} else {
|
|
$secs = $systemValue['order_cancel_time'];
|
|
}
|
|
$order['stop_time'] = $secs * 3600 + $order['add_time'];
|
|
$order['status_pic'] = '';
|
|
//获取商品状态图片
|
|
if ($isPic) {
|
|
$order_details_images = sys_data('order_details_images') ?: [];
|
|
foreach ($order_details_images as $image) {
|
|
if (isset($image['order_status']) && $image['order_status'] == $order['_status']['_type']) {
|
|
$order['status_pic'] = $image['pic'];
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if ($order['seckill_id'] || $order['bargain_id'] || $order['combination_id'] || $order['advance_id']) {
|
|
if ($order['seckill_id']) $order['type'] = 1;
|
|
if ($order['bargain_id']) $order['type'] = 2;
|
|
if ($order['combination_id']) $order['type'] = 3;
|
|
if ($order['advance_id']) $order['type'] = 4;
|
|
}
|
|
$order['offlinePayStatus'] = (int)sys_config('offline_pay_status') ?? (int)2;
|
|
$log = $statusServices->getColumn(['oid' => $order['id']], 'change_time', 'change_type');
|
|
if (isset($log['delivery'])) {
|
|
$delivery = date('Y-m-d', $log['delivery']);
|
|
} elseif (isset($log['delivery_goods'])) {
|
|
$delivery = date('Y-m-d', $log['delivery_goods']);
|
|
} elseif (isset($log['delivery_fictitious'])) {
|
|
$delivery = date('Y-m-d', $log['delivery_fictitious']);
|
|
} else {
|
|
$delivery = '';
|
|
}
|
|
$order['order_log'] = [
|
|
'create' => isset($log['cache_key_create_order']) ? date('Y-m-d', $log['cache_key_create_order']) : '',
|
|
'pay' => isset($log['pay_success']) ? date('Y-m-d', $log['pay_success']) : '',
|
|
'delivery' => $delivery,
|
|
'take' => isset($log['take_delivery']) ? date('Y-m-d', $log['take_delivery']) : '',
|
|
'complete' => isset($log['check_order_over']) ? date('Y-m-d', $log['check_order_over']) : '',
|
|
];
|
|
return $order;
|
|
}
|
|
|
|
/**
|
|
* 数据转换
|
|
* @param array $data
|
|
* @return array
|
|
*/
|
|
public function tidyOrderList(array $data)
|
|
{
|
|
/** @var StoreOrderCartInfoServices $services */
|
|
$services = app()->make(StoreOrderCartInfoServices::class);
|
|
foreach ($data as &$item) {
|
|
$item['_info'] = $services->getOrderCartInfo((int)$item['id']);
|
|
$item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
|
|
$item['_refund_time'] = isset($item['refund_reason_time']) && $item['refund_reason_time'] ? date('Y-m-d H:i:s', $item['refund_reason_time']) : '';
|
|
$item['_pay_time'] = isset($item['pay_time']) && $item['pay_time'] ? date('Y-m-d H:i:s', $item['pay_time']) : '';
|
|
if (($item['pink_id'] || $item['combination_id']) && isset($item['pinkStatus'])) {
|
|
switch ($item['pinkStatus']) {
|
|
case 1:
|
|
$item['pink_name'] = '[拼团订单]正在进行中';
|
|
$item['color'] = '#f00';
|
|
break;
|
|
case 2:
|
|
$item['pink_name'] = '[拼团订单]已完成';
|
|
$item['color'] = '#00f';
|
|
break;
|
|
case 3:
|
|
$item['pink_name'] = '[拼团订单]未完成';
|
|
$item['color'] = '#f0f';
|
|
break;
|
|
default:
|
|
$item['pink_name'] = '[拼团订单]历史订单';
|
|
$item['color'] = '#457856';
|
|
break;
|
|
}
|
|
} elseif ($item['combination_id']) {
|
|
$item['pink_name'] = '[拼团订单]';
|
|
$item['color'] = '#32c5e9';
|
|
} elseif ($item['seckill_id']) {
|
|
$item['pink_name'] = '[秒杀订单]';
|
|
$item['color'] = '#32c5e9';
|
|
} elseif ($item['bargain_id']) {
|
|
$item['pink_name'] = '[砍价订单]';
|
|
$item['color'] = '#12c5e9';
|
|
} elseif ($item['advance_id']) {
|
|
$item['pink_name'] = '[预售订单]';
|
|
$item['color'] = '#12c5e9';
|
|
} else {
|
|
if ($item['shipping_type'] == 1) {
|
|
$item['pink_name'] = '[普通订单]';
|
|
$item['color'] = '#895612';
|
|
} else if ($item['shipping_type'] == 2) {
|
|
$item['pink_name'] = '[核销订单]';
|
|
$item['color'] = '#8956E8';
|
|
}
|
|
}
|
|
if ($item['paid'] == 1) {
|
|
switch ($item['pay_type']) {
|
|
case PayServices::WEIXIN_PAY:
|
|
$item['pay_type_name'] = '微信支付';
|
|
break;
|
|
case PayServices::YUE_PAY:
|
|
$item['pay_type_name'] = '余额支付';
|
|
break;
|
|
case PayServices::OFFLINE_PAY:
|
|
$item['pay_type_name'] = '线下支付';
|
|
break;
|
|
case PayServices::ALIAPY_PAY:
|
|
$item['pay_type_name'] = '支付宝支付';
|
|
break;
|
|
case PayServices::ALLIN_PAY:
|
|
$item['pay_type_name'] = '通联支付';
|
|
break;
|
|
default:
|
|
$item['pay_type_name'] = '其他支付';
|
|
break;
|
|
}
|
|
} else {
|
|
switch ($item['pay_type']) {
|
|
case 'offline':
|
|
$item['pay_type_name'] = '线下支付';
|
|
$item['pay_type_info'] = 1;
|
|
break;
|
|
default:
|
|
$item['pay_type_name'] = '';
|
|
break;
|
|
}
|
|
}
|
|
$status_name = ['status_name' => '', 'pics' => []];
|
|
if ($item['paid'] == 0 && $item['status'] == 0) {
|
|
$status_name['status_name'] = '未支付';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['shipping_type'] == 1 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = $item['combination_id'] && isset($item['pinkStatus']) && $item['pinkStatus'] == 1 ? '未发货(拼团中)' : '未发货';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 4 && $item['shipping_type'] == 1 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = '部分发货';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['shipping_type'] == 2 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = '未核销';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 1 && $item['shipping_type'] == 1 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = '待收货';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 1 && $item['shipping_type'] == 2 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = '未核销';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 2 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = '待评价';
|
|
} else if ($item['paid'] == 1 && $item['status'] == 3 && $item['refund_status'] == 0) {
|
|
$status_name['status_name'] = '已完成';
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 1) {
|
|
$refundReasonTime = date('Y-m-d H:i', $item['refund_reason_time']);
|
|
$refundReasonWapImg = json_decode($item['refund_reason_wap_img'], true);
|
|
$refundReasonWapImg = $refundReasonWapImg ?: [];
|
|
$img = [];
|
|
if (count($refundReasonWapImg)) {
|
|
foreach ($refundReasonWapImg as $itemImg) {
|
|
if (strlen(trim($itemImg)))
|
|
$img[] = $itemImg;
|
|
}
|
|
}
|
|
$status_name['status_name'] = '退款中';
|
|
$status_name['pics'] = $img;
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 2) {
|
|
$status_name['status_name'] = '已退款';
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 3) {
|
|
$status_name['status_name'] = <<<HTML
|
|
<b style="color:#f124c7">部分退款</b><br/>
|
|
HTML;
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 4) {
|
|
$status_name['status_name'] = <<<HTML
|
|
<b style="color:#f124c7">退款中</b><br/>
|
|
HTML;
|
|
}
|
|
$item['status_name'] = $status_name;
|
|
if ($item['paid'] == 0 && $item['status'] == 0 && $item['refund_status'] == 0) {
|
|
$item['_status'] = 1;//未支付
|
|
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['refund_status'] == 0) {
|
|
$item['_status'] = 2;//已支付 未发货
|
|
} else if ($item['paid'] == 1 && $item['status'] == 4 && $item['refund_status'] == 0) {
|
|
$item['_status'] = 8;//已支付 部分发货
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 1) {
|
|
$item['_status'] = 3;//已支付 申请退款中
|
|
} else if ($item['paid'] == 1 && $item['status'] == 1 && $item['refund_status'] == 0) {
|
|
$item['_status'] = 4;//已支付 待收货
|
|
} else if ($item['paid'] == 1 && $item['status'] == 2 && $item['refund_status'] == 0) {
|
|
$item['_status'] = 5;//已支付 待评价
|
|
} else if ($item['paid'] == 1 && $item['status'] == 3 && $item['refund_status'] == 0) {
|
|
$item['_status'] = 6;//已支付 已完成
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 2) {
|
|
$item['_status'] = 7;//已支付 已退款
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 3 && $item['status'] == 4) {
|
|
$item['_status'] = 9;//拆单发货 部分申请退款
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 4) {
|
|
$item['_status'] = 10;//拆单发货 已全部申请退款
|
|
} else if ($item['paid'] == 1 && $item['refund_status'] == 3 && $item['status'] == 0) {
|
|
$item['_status'] = 11;//拆单退款 未发货
|
|
}
|
|
if ($item['clerk_id'] == 0 && !isset($item['clerk_name'])) {
|
|
$item['clerk_name'] = '总平台';
|
|
}
|
|
//根据核销员更改store_name
|
|
if ($item['clerk_id'] && isset($item['staff_store_id']) && $item['staff_store_id']) {
|
|
/** @var SystemStoreServices $store */
|
|
$store = app()->make(SystemStoreServices::class);
|
|
$storeOne = $store->value(['id' => $item['staff_store_id']], 'name');
|
|
if ($storeOne) $item['store_name'] = $storeOne;
|
|
}
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 处理订单金额
|
|
* @param $where
|
|
* @return array
|
|
*/
|
|
public function getOrderPrice($where)
|
|
{
|
|
if (isset($where['refund_type']) && $where['refund_type']) unset($where['refund_type']);
|
|
$where['is_del'] = 0;//删除订单不统计
|
|
$price['today_pay_price'] = 0;//今日支付金额
|
|
$price['pay_price'] = 0;//支付金额
|
|
$price['refund_price'] = 0;//退款金额
|
|
$price['pay_price_wx'] = 0;//微信支付金额
|
|
$price['pay_price_yue'] = 0;//余额支付金额
|
|
$price['pay_price_offline'] = 0;//线下支付金额
|
|
$price['pay_price_other'] = 0;//其他支付金额
|
|
$price['use_integral'] = 0;//用户使用积分
|
|
$price['back_integral'] = 0;//退积分总数
|
|
$price['deduction_price'] = 0;//抵扣金额
|
|
$price['total_num'] = 0; //商品总数
|
|
$price['today_count_sum'] = 0; //今日订单总数
|
|
$price['count_sum'] = 0; //订单总数
|
|
$price['brokerage'] = 0;
|
|
$price['pay_postage'] = 0;
|
|
$whereData = ['is_del' => 0];
|
|
if ($where['status'] == '' && $where['pay_type'] != 3) {
|
|
$whereData['paid'] = 1;
|
|
}
|
|
$ids = $this->dao->column($where + $whereData, 'id');
|
|
if (count($ids)) {
|
|
/** @var UserBillServices $services */
|
|
$services = app()->make(UserBillServices::class);
|
|
$price['brokerage'] = $services->getBrokerageNumSum($ids);
|
|
}
|
|
$price['refund_price'] = $this->dao->together($where + ['is_del' => 0, 'paid' => 1, 'refund_status' => 2], 'refund_price');
|
|
$sumNumber = $this->dao->search($where + $whereData)->field([
|
|
'sum(total_num) as sum_total_num',
|
|
'count(id) as count_sum',
|
|
'sum(pay_price) as sum_pay_price',
|
|
'sum(pay_postage) as sum_pay_postage',
|
|
'sum(use_integral) as sum_use_integral',
|
|
'sum(back_integral) as sum_back_integral',
|
|
'sum(deduction_price) as sum_deduction_price'
|
|
])->find();
|
|
if ($sumNumber) {
|
|
$price['count_sum'] = $sumNumber['count_sum'];
|
|
$price['total_num'] = $sumNumber['sum_total_num'];
|
|
$price['pay_price'] = $sumNumber['sum_pay_price'];
|
|
$price['pay_postage'] = $sumNumber['sum_pay_postage'];
|
|
$price['use_integral'] = $sumNumber['sum_use_integral'];
|
|
$price['back_integral'] = $sumNumber['sum_back_integral'];
|
|
$price['deduction_price'] = $sumNumber['sum_deduction_price'];
|
|
}
|
|
$list = $this->dao->column($where + $whereData, 'sum(pay_price) as sum_pay_price,pay_type', 'id', 'pay_type');
|
|
foreach ($list as $v) {
|
|
if ($v['pay_type'] == 'weixin') {
|
|
$price['pay_price_wx'] = $v['sum_pay_price'];
|
|
} elseif ($v['pay_type'] == 'yue') {
|
|
$price['pay_price_yue'] = $v['sum_pay_price'];
|
|
} elseif ($v['pay_type'] == 'offline') {
|
|
$price['pay_price_offline'] = $v['sum_pay_price'];
|
|
} else {
|
|
$price['pay_price_other'] = $v['sum_pay_price'];
|
|
}
|
|
}
|
|
$where['time'] = 'today';
|
|
$sumNumber = $this->dao->search($where + $whereData)->field([
|
|
'count(id) as today_count_sum',
|
|
'sum(pay_price) as today_pay_price',
|
|
])->find();
|
|
if ($sumNumber) {
|
|
$price['today_count_sum'] = $sumNumber['today_count_sum'];
|
|
$price['today_pay_price'] = $where['status'] !== 0 ? $sumNumber['today_pay_price'] : 0;
|
|
}
|
|
return $price;
|
|
}
|
|
|
|
/**
|
|
* 获取订单列表页面统计数据
|
|
* @param $where
|
|
* @return array
|
|
*/
|
|
public function getBadge($where)
|
|
{
|
|
$price = $this->getOrderPrice($where);
|
|
return [
|
|
[
|
|
'name' => '订单数量',
|
|
'field' => '件',
|
|
'count' => $price['count_sum'],
|
|
'className' => 'md-basket',
|
|
'col' => 6
|
|
],
|
|
[
|
|
'name' => '订单金额',
|
|
'field' => '元',
|
|
'count' => $price['pay_price'],
|
|
'className' => 'md-pricetags',
|
|
'col' => 6
|
|
],
|
|
[
|
|
'name' => '今日订单数量',
|
|
'field' => '件',
|
|
'count' => $price['today_count_sum'],
|
|
'className' => 'ios-chatbubbles',
|
|
'col' => 6
|
|
],
|
|
[
|
|
'name' => '今日支付金额',
|
|
'field' => '元',
|
|
'count' => $price['today_pay_price'],
|
|
'className' => 'ios-cash',
|
|
'col' => 6
|
|
],
|
|
];
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param array $where
|
|
* @return mixed
|
|
*/
|
|
public function orderCount(array $where)
|
|
{
|
|
$where_one = ['time' => $where['time'], 'is_system_del' => 0, 'pid' => 0, 'status' => 1, 'shipping_type' => 1];
|
|
$data['all'] = (string)$this->dao->count($where_one);
|
|
$data['general'] = (string)$this->dao->count($where_one + ['type' => 1]);
|
|
$data['pink'] = (string)$this->dao->count($where_one + ['type' => 2]);
|
|
$data['seckill'] = (string)$this->dao->count($where_one + ['type' => 3]);
|
|
$data['bargain'] = (string)$this->dao->count($where_one + ['type' => 4]);
|
|
$data['advance'] = (string)$this->dao->count($where_one + ['type' => 5]);
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 创建修改订单表单
|
|
* @param int $id
|
|
* @return array
|
|
* @throws \FormBuilder\Exception\FormBuilderException
|
|
*/
|
|
public function updateForm(int $id)
|
|
{
|
|
$product = $this->dao->get($id);
|
|
if (!$product) {
|
|
throw new AdminException(100026);
|
|
}
|
|
$f = [];
|
|
$f[] = Form::input('order_id', '订单编号', $product->getData('order_id'))->disabled(true);
|
|
$f[] = Form::number('total_price', '商品总价', (float)$product->getData('total_price'))->min(0)->disabled(true);
|
|
$f[] = Form::number('pay_postage', '支付邮费', (float)$product->getData('pay_postage') ?: 0)->disabled(true);
|
|
$f[] = Form::number('pay_price', '实际支付金额', (float)$product->getData('pay_price'))->min(0);
|
|
$f[] = Form::number('gain_integral', '赠送积分', (float)$product->getData('gain_integral') ?: 0)->min(0);
|
|
return create_form('修改订单', $f, $this->url('/order/update/' . $id), 'PUT');
|
|
}
|
|
|
|
/**
|
|
* 修改订单
|
|
* @param int $id
|
|
* @param array $data
|
|
* @return mixed
|
|
* @throws \Exception
|
|
*/
|
|
public function updateOrder(int $id, array $data)
|
|
{
|
|
$order = $this->dao->getOne(['id' => $id, 'is_del' => 0]);
|
|
if (!$order) {
|
|
throw new AdminException(400118);
|
|
}
|
|
/** @var StoreOrderCreateServices $createServices */
|
|
$createServices = app()->make(StoreOrderCreateServices::class);
|
|
$data['order_id'] = $createServices->getNewOrderId('cp');
|
|
if (sys_config('user_brokerage_type') == 1) {
|
|
$percent = bcdiv((string)$data['pay_price'], (string)$order['pay_price'], 6);
|
|
if ($order['one_brokerage'] > 0) {
|
|
$data['one_brokerage'] = bcmul((string)$order['one_brokerage'], $percent, 2);
|
|
}
|
|
if ($order['two_brokerage'] > 0) {
|
|
$data['two_brokerage'] = bcmul((string)$order['two_brokerage'], $percent, 2);
|
|
}
|
|
}
|
|
/** @var StoreOrderStatusServices $services */
|
|
$services = app()->make(StoreOrderStatusServices::class);
|
|
return $this->transaction(function () use ($id, $data, $services) {
|
|
$res = $this->dao->update($id, $data);
|
|
$res = $res && $services->save([
|
|
'oid' => $id,
|
|
'change_type' => 'order_edit',
|
|
'change_time' => time(),
|
|
'change_message' => '修改商品总价为:' . $data['total_price'] . ' 实际支付金额' . $data['pay_price']
|
|
]);
|
|
if (isset($data['gain_integral'])) {
|
|
$res = $res && $services->save([
|
|
'oid' => $id,
|
|
'change_type' => 'order_edit',
|
|
'change_time' => time(),
|
|
'change_message' => '修改订单赠送积分为:' . $data['gain_integral']
|
|
]);
|
|
}
|
|
if ($res) {
|
|
$order = $this->dao->getOne(['id' => $id, 'is_del' => 0]);
|
|
//改价短信提醒
|
|
event('NoticeListener', [['order' => $order, 'pay_price' => $data['pay_price']], 'price_revision']);
|
|
return $data['order_id'];
|
|
} else {
|
|
throw new AdminException(100007);
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* 订单图表
|
|
* @param $cycle
|
|
* @return array
|
|
*/
|
|
public function orderCharts($cycle)
|
|
{
|
|
$datalist = [];
|
|
switch ($cycle) {
|
|
case 'thirtyday':
|
|
$datebefor = date('Y-m-d', strtotime('-30 day'));
|
|
$dateafter = date('Y-m-d 23:59:59');
|
|
//上期
|
|
$pre_datebefor = date('Y-m-d', strtotime('-60 day'));
|
|
$pre_dateafter = date('Y-m-d', strtotime('-30 day'));
|
|
for ($i = -29; $i <= 0; $i++) {
|
|
$datalist[date('m-d', strtotime($i . ' day'))] = date('m-d', strtotime($i . ' day'));
|
|
}
|
|
$order_list = $this->dao->orderAddTimeList($datebefor, $dateafter, '30');
|
|
if (empty($order_list)) return ['yAxis' => [], 'legend' => [], 'xAxis' => [], 'serise' => [], 'pre_cycle' => [], 'cycle' => []];
|
|
foreach ($order_list as $k => &$v) {
|
|
$order_list[$v['day']] = $v;
|
|
}
|
|
$cycle_list = [];
|
|
foreach ($datalist as $dk => $dd) {
|
|
if (!empty($order_list[$dd])) {
|
|
$cycle_list[$dd] = $order_list[$dd];
|
|
} else {
|
|
$cycle_list[$dd] = ['count' => 0, 'day' => $dd, 'price' => ''];
|
|
}
|
|
}
|
|
$chartdata = [];
|
|
$data = [];//临时
|
|
$chartdata['yAxis']['maxnum'] = 0;//最大值数量
|
|
$chartdata['yAxis']['maxprice'] = 0;//最大值金额
|
|
foreach ($cycle_list as $k => $v) {
|
|
$data['day'][] = $v['day'];
|
|
$data['count'][] = $v['count'];
|
|
$data['price'][] = round($v['price'], 2);
|
|
if ($chartdata['yAxis']['maxnum'] < $v['count'])
|
|
$chartdata['yAxis']['maxnum'] = $v['count'];//日最大订单数
|
|
if ($chartdata['yAxis']['maxprice'] < $v['price'])
|
|
$chartdata['yAxis']['maxprice'] = $v['price'];//日最大金额
|
|
}
|
|
$chartdata['legend'] = ['订单金额', '订单数'];//分类
|
|
$chartdata['xAxis'] = $data['day'];//X轴值
|
|
$series1 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series2 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][0], 'type' => 'bar', 'itemStyle' => $series1, 'data' => $data['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][1], 'type' => 'line', 'itemStyle' => $series2, 'data' => $data['count'], 'yAxisIndex' => 1];//分类2值
|
|
//统计总数上期
|
|
$pre_total = $this->dao->preTotalFind($pre_datebefor, $pre_dateafter);
|
|
if ($pre_total) {
|
|
$chartdata['pre_cycle']['count'] = [
|
|
'data' => $pre_total['count'] ?: 0
|
|
];
|
|
$chartdata['pre_cycle']['price'] = [
|
|
'data' => $pre_total['price'] ?: 0
|
|
];
|
|
}
|
|
//统计总数
|
|
$total = $this->dao->preTotalFind($datebefor, $dateafter);
|
|
if ($total) {
|
|
$cha_count = intval($pre_total['count']) - intval($total['count']);
|
|
$pre_total['count'] = $pre_total['count'] == 0 ? 1 : $pre_total['count'];
|
|
$chartdata['cycle']['count'] = [
|
|
'data' => $total['count'] ?: 0,
|
|
'percent' => round((abs($cha_count) / intval($pre_total['count']) * 100), 2),
|
|
'is_plus' => $cha_count > 0 ? -1 : ($cha_count == 0 ? 0 : 1)
|
|
];
|
|
$cha_price = round($pre_total['price'], 2) - round($total['price'], 2);
|
|
$pre_total['price'] = $pre_total['price'] == 0 ? 1 : $pre_total['price'];
|
|
$chartdata['cycle']['price'] = [
|
|
'data' => $total['price'] ?: 0,
|
|
'percent' => round(abs($cha_price) / $pre_total['price'] * 100, 2),
|
|
'is_plus' => $cha_price > 0 ? -1 : ($cha_price == 0 ? 0 : 1)
|
|
];
|
|
}
|
|
return $chartdata;
|
|
case 'week':
|
|
$weekarray = array(['周日'], ['周一'], ['周二'], ['周三'], ['周四'], ['周五'], ['周六']);
|
|
$datebefor = date('Y-m-d', strtotime('-1 week Monday'));
|
|
$dateafter = date('Y-m-d', strtotime('-1 week Sunday'));
|
|
// $order_list = $this->dao->orderAddTimeList($datebefor, $dateafter, 'week');
|
|
//数据查询重新处理
|
|
$new_order_list = [];
|
|
// foreach ($order_list as $k => $v) {
|
|
// $new_order_list[$v['day']] = $v;
|
|
// }
|
|
$now_datebefor = date('Y-m-d', (time() - ((date('w') == 0 ? 7 : date('w')) - 1) * 24 * 3600));
|
|
$now_dateafter = date('Y-m-d', strtotime("+1 day"));
|
|
$now_order_list = $this->dao->nowOrderList($now_datebefor, $now_dateafter, 'week');
|
|
//数据查询重新处理 key 变为当前值
|
|
$new_now_order_list = [];
|
|
foreach ($now_order_list as $k => $v) {
|
|
$new_now_order_list[$v['day']] = $v;
|
|
}
|
|
foreach ($weekarray as $dk => $dd) {
|
|
if (!empty($new_order_list[$dk])) {
|
|
$weekarray[$dk]['pre'] = $new_order_list[$dk];
|
|
} else {
|
|
$weekarray[$dk]['pre'] = ['count' => 0, 'day' => $weekarray[$dk][0], 'price' => '0'];
|
|
}
|
|
if (!empty($new_now_order_list[$dk])) {
|
|
$weekarray[$dk]['now'] = $new_now_order_list[$dk];
|
|
} else {
|
|
$weekarray[$dk]['now'] = ['count' => 0, 'day' => $weekarray[$dk][0], 'price' => '0'];
|
|
}
|
|
}
|
|
$chartdata = [];
|
|
$data = [];//临时
|
|
$chartdata['yAxis']['maxnum'] = 0;//最大值数量
|
|
$chartdata['yAxis']['maxprice'] = 0;//最大值金额
|
|
foreach ($weekarray as $k => $v) {
|
|
$data['day'][] = $v[0];
|
|
$data['pre']['count'][] = $v['pre']['count'];
|
|
$data['pre']['price'][] = round($v['pre']['price'], 2);
|
|
$data['now']['count'][] = $v['now']['count'];
|
|
$data['now']['price'][] = round($v['now']['price'], 2);
|
|
if ($chartdata['yAxis']['maxnum'] < $v['pre']['count'] || $chartdata['yAxis']['maxnum'] < $v['now']['count']) {
|
|
$chartdata['yAxis']['maxnum'] = $v['pre']['count'] > $v['now']['count'] ? $v['pre']['count'] : $v['now']['count'];//日最大订单数
|
|
}
|
|
if ($chartdata['yAxis']['maxprice'] < $v['pre']['price'] || $chartdata['yAxis']['maxprice'] < $v['now']['price']) {
|
|
$chartdata['yAxis']['maxprice'] = $v['pre']['price'] > $v['now']['price'] ? $v['pre']['price'] : $v['now']['price'];//日最大金额
|
|
}
|
|
}
|
|
$chartdata['legend'] = ['上周金额', '本周金额', '上周订单数', '本周订单数'];//分类
|
|
$chartdata['xAxis'] = $data['day'];//X轴值
|
|
$series1 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series2 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series3 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series4 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][0], 'type' => 'bar', 'itemStyle' => $series1, 'data' => $data['pre']['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][1], 'type' => 'bar', 'itemStyle' => $series2, 'data' => $data['now']['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][2], 'type' => 'line', 'itemStyle' => $series3, 'data' => $data['pre']['count'], 'yAxisIndex' => 1];//分类2值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][3], 'type' => 'line', 'itemStyle' => $series4, 'data' => $data['now']['count'], 'yAxisIndex' => 1];//分类2值
|
|
|
|
//统计总数上期
|
|
$pre_total = $this->dao->preTotalFind($datebefor, $dateafter);
|
|
if ($pre_total) {
|
|
$chartdata['pre_cycle']['count'] = [
|
|
'data' => $pre_total['count'] ?: 0
|
|
];
|
|
$chartdata['pre_cycle']['price'] = [
|
|
'data' => $pre_total['price'] ?: 0
|
|
];
|
|
}
|
|
//统计总数
|
|
$total = $this->dao->preTotalFind($now_datebefor, $now_dateafter);
|
|
if ($total) {
|
|
$cha_count = intval($pre_total['count']) - intval($total['count']);
|
|
$pre_total['count'] = $pre_total['count'] == 0 ? 1 : $pre_total['count'];
|
|
$chartdata['cycle']['count'] = [
|
|
'data' => $total['count'] ?: 0,
|
|
'percent' => round((abs($cha_count) / intval($pre_total['count']) * 100), 2),
|
|
'is_plus' => $cha_count > 0 ? -1 : ($cha_count == 0 ? 0 : 1)
|
|
];
|
|
$cha_price = round($pre_total['price'], 2) - round($total['price'], 2);
|
|
$pre_total['price'] = $pre_total['price'] == 0 ? 1 : $pre_total['price'];
|
|
$chartdata['cycle']['price'] = [
|
|
'data' => $total['price'] ?: 0,
|
|
'percent' => round(abs($cha_price) / $pre_total['price'] * 100, 2),
|
|
'is_plus' => $cha_price > 0 ? -1 : ($cha_price == 0 ? 0 : 1)
|
|
];
|
|
}
|
|
return $chartdata;
|
|
case 'month':
|
|
$weekarray = array('01' => ['1'], '02' => ['2'], '03' => ['3'], '04' => ['4'], '05' => ['5'], '06' => ['6'], '07' => ['7'], '08' => ['8'], '09' => ['9'], '10' => ['10'], '11' => ['11'], '12' => ['12'], '13' => ['13'], '14' => ['14'], '15' => ['15'], '16' => ['16'], '17' => ['17'], '18' => ['18'], '19' => ['19'], '20' => ['20'], '21' => ['21'], '22' => ['22'], '23' => ['23'], '24' => ['24'], '25' => ['25'], '26' => ['26'], '27' => ['27'], '28' => ['28'], '29' => ['29'], '30' => ['30'], '31' => ['31']);
|
|
|
|
$datebefor = date('Y-m-01', strtotime('-1 month'));
|
|
$dateafter = date('Y-m-d', strtotime(date('Y-m-01')));
|
|
$order_list = $this->dao->orderAddTimeList($datebefor, $dateafter, "month");
|
|
//数据查询重新处理
|
|
$new_order_list = [];
|
|
foreach ($order_list as $k => $v) {
|
|
$new_order_list[$v['day']] = $v;
|
|
}
|
|
$now_datebefor = date('Y-m-01');
|
|
$now_dateafter = date('Y-m-d', strtotime("+1 day"));
|
|
$now_order_list = $this->dao->nowOrderList($now_datebefor, $now_dateafter, "month");
|
|
//数据查询重新处理 key 变为当前值
|
|
$new_now_order_list = [];
|
|
foreach ($now_order_list as $k => $v) {
|
|
$new_now_order_list[$v['day']] = $v;
|
|
}
|
|
foreach ($weekarray as $dk => $dd) {
|
|
if (!empty($new_order_list[$dk])) {
|
|
$weekarray[$dk]['pre'] = $new_order_list[$dk];
|
|
} else {
|
|
$weekarray[$dk]['pre'] = ['count' => 0, 'day' => $weekarray[$dk][0], 'price' => '0'];
|
|
}
|
|
if (!empty($new_now_order_list[$dk])) {
|
|
$weekarray[$dk]['now'] = $new_now_order_list[$dk];
|
|
} else {
|
|
$weekarray[$dk]['now'] = ['count' => 0, 'day' => $weekarray[$dk][0], 'price' => '0'];
|
|
}
|
|
}
|
|
$chartdata = [];
|
|
$data = [];//临时
|
|
$chartdata['yAxis']['maxnum'] = 0;//最大值数量
|
|
$chartdata['yAxis']['maxprice'] = 0;//最大值金额
|
|
foreach ($weekarray as $k => $v) {
|
|
$data['day'][] = $v[0];
|
|
$data['pre']['count'][] = $v['pre']['count'];
|
|
$data['pre']['price'][] = round($v['pre']['price'], 2);
|
|
$data['now']['count'][] = $v['now']['count'];
|
|
$data['now']['price'][] = round($v['now']['price'], 2);
|
|
if ($chartdata['yAxis']['maxnum'] < $v['pre']['count'] || $chartdata['yAxis']['maxnum'] < $v['now']['count']) {
|
|
$chartdata['yAxis']['maxnum'] = $v['pre']['count'] > $v['now']['count'] ? $v['pre']['count'] : $v['now']['count'];//日最大订单数
|
|
}
|
|
if ($chartdata['yAxis']['maxprice'] < $v['pre']['price'] || $chartdata['yAxis']['maxprice'] < $v['now']['price']) {
|
|
$chartdata['yAxis']['maxprice'] = $v['pre']['price'] > $v['now']['price'] ? $v['pre']['price'] : $v['now']['price'];//日最大金额
|
|
}
|
|
|
|
}
|
|
$chartdata['legend'] = ['上月金额', '本月金额', '上月订单数', '本月订单数'];//分类
|
|
$chartdata['xAxis'] = $data['day'];//X轴值
|
|
$series1 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series2 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series3 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series4 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][0], 'type' => 'bar', 'itemStyle' => $series1, 'data' => $data['pre']['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][1], 'type' => 'bar', 'itemStyle' => $series2, 'data' => $data['now']['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][2], 'type' => 'line', 'itemStyle' => $series3, 'data' => $data['pre']['count'], 'yAxisIndex' => 1];//分类2值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][3], 'type' => 'line', 'itemStyle' => $series4, 'data' => $data['now']['count'], 'yAxisIndex' => 1];//分类2值
|
|
|
|
//统计总数上期
|
|
$pre_total = $this->dao->preTotalFind($datebefor, $dateafter);
|
|
if ($pre_total) {
|
|
$chartdata['pre_cycle']['count'] = [
|
|
'data' => $pre_total['count'] ?: 0
|
|
];
|
|
$chartdata['pre_cycle']['price'] = [
|
|
'data' => $pre_total['price'] ?: 0
|
|
];
|
|
}
|
|
//统计总数
|
|
$total = $this->dao->preTotalFind($now_datebefor, $now_dateafter);
|
|
if ($total) {
|
|
$cha_count = intval($pre_total['count']) - intval($total['count']);
|
|
$pre_total['count'] = $pre_total['count'] == 0 ? 1 : $pre_total['count'];
|
|
$chartdata['cycle']['count'] = [
|
|
'data' => $total['count'] ?: 0,
|
|
'percent' => round((abs($cha_count) / intval($pre_total['count']) * 100), 2),
|
|
'is_plus' => $cha_count > 0 ? -1 : ($cha_count == 0 ? 0 : 1)
|
|
];
|
|
$cha_price = round($pre_total['price'], 2) - round($total['price'], 2);
|
|
$pre_total['price'] = $pre_total['price'] == 0 ? 1 : $pre_total['price'];
|
|
$chartdata['cycle']['price'] = [
|
|
'data' => $total['price'] ?: 0,
|
|
'percent' => round(abs($cha_price) / $pre_total['price'] * 100, 2),
|
|
'is_plus' => $cha_price > 0 ? -1 : ($cha_price == 0 ? 0 : 1)
|
|
];
|
|
}
|
|
return $chartdata;
|
|
case 'year':
|
|
$weekarray = array('01' => ['一月'], '02' => ['二月'], '03' => ['三月'], '04' => ['四月'], '05' => ['五月'], '06' => ['六月'], '07' => ['七月'], '08' => ['八月'], '09' => ['九月'], '10' => ['十月'], '11' => ['十一月'], '12' => ['十二月']);
|
|
$datebefor = date('Y-01-01', strtotime('-1 year'));
|
|
$dateafter = date('Y-12-31', strtotime('-1 year'));
|
|
$order_list = $this->dao->orderAddTimeList($datebefor, $dateafter, 'year');
|
|
//数据查询重新处理
|
|
$new_order_list = [];
|
|
foreach ($order_list as $k => $v) {
|
|
$new_order_list[$v['day']] = $v;
|
|
}
|
|
$now_datebefor = date('Y-01-01');
|
|
$now_dateafter = date('Y-12-31 23:59:59');
|
|
$now_order_list = $this->dao->nowOrderList($now_datebefor, $now_dateafter, 'year');
|
|
//数据查询重新处理 key 变为当前值
|
|
$new_now_order_list = [];
|
|
foreach ($now_order_list as $k => $v) {
|
|
$new_now_order_list[$v['day']] = $v;
|
|
}
|
|
foreach ($weekarray as $dk => $dd) {
|
|
if (!empty($new_order_list[$dk])) {
|
|
$weekarray[$dk]['pre'] = $new_order_list[$dk];
|
|
} else {
|
|
$weekarray[$dk]['pre'] = ['count' => 0, 'day' => $weekarray[$dk][0], 'price' => '0'];
|
|
}
|
|
if (!empty($new_now_order_list[$dk])) {
|
|
$weekarray[$dk]['now'] = $new_now_order_list[$dk];
|
|
} else {
|
|
$weekarray[$dk]['now'] = ['count' => 0, 'day' => $weekarray[$dk][0], 'price' => '0'];
|
|
}
|
|
}
|
|
$chartdata = [];
|
|
$data = [];//临时
|
|
$chartdata['yAxis']['maxnum'] = 0;//最大值数量
|
|
$chartdata['yAxis']['maxprice'] = 0;//最大值金额
|
|
foreach ($weekarray as $k => $v) {
|
|
$data['day'][] = $v[0];
|
|
$data['pre']['count'][] = $v['pre']['count'];
|
|
$data['pre']['price'][] = round($v['pre']['price'], 2);
|
|
$data['now']['count'][] = $v['now']['count'];
|
|
$data['now']['price'][] = round($v['now']['price'], 2);
|
|
if ($chartdata['yAxis']['maxnum'] < $v['pre']['count'] || $chartdata['yAxis']['maxnum'] < $v['now']['count']) {
|
|
$chartdata['yAxis']['maxnum'] = $v['pre']['count'] > $v['now']['count'] ? $v['pre']['count'] : $v['now']['count'];//日最大订单数
|
|
}
|
|
if ($chartdata['yAxis']['maxprice'] < $v['pre']['price'] || $chartdata['yAxis']['maxprice'] < $v['now']['price']) {
|
|
$chartdata['yAxis']['maxprice'] = $v['pre']['price'] > $v['now']['price'] ? $v['pre']['price'] : $v['now']['price'];//日最大金额
|
|
}
|
|
}
|
|
$chartdata['legend'] = ['去年金额', '今年金额', '去年订单数', '今年订单数'];//分类
|
|
$chartdata['xAxis'] = $data['day'];//X轴值
|
|
$series1 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series2 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series3 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#69cdff'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#3eb3f7'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#1495eb'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$series4 = ['normal' => ['color' => [
|
|
'x' => 0, 'y' => 0, 'x2' => 0, 'y2' => 1,
|
|
'colorStops' => [
|
|
[
|
|
'offset' => 0,
|
|
'color' => '#6fdeab'
|
|
],
|
|
[
|
|
'offset' => 0.5,
|
|
'color' => '#44d693'
|
|
],
|
|
[
|
|
'offset' => 1,
|
|
'color' => '#2cc981'
|
|
]
|
|
]
|
|
]]
|
|
];
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][0], 'type' => 'bar', 'itemStyle' => $series1, 'data' => $data['pre']['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][1], 'type' => 'bar', 'itemStyle' => $series2, 'data' => $data['now']['price']];//分类1值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][2], 'type' => 'line', 'itemStyle' => $series3, 'data' => $data['pre']['count'], 'yAxisIndex' => 1];//分类2值
|
|
$chartdata['series'][] = ['name' => $chartdata['legend'][3], 'type' => 'line', 'itemStyle' => $series4, 'data' => $data['now']['count'], 'yAxisIndex' => 1];//分类2值
|
|
|
|
//统计总数上期
|
|
$pre_total = $this->dao->preTotalFind($datebefor, $dateafter);
|
|
if ($pre_total) {
|
|
$chartdata['pre_cycle']['count'] = [
|
|
'data' => $pre_total['count'] ?: 0
|
|
];
|
|
$chartdata['pre_cycle']['price'] = [
|
|
'data' => $pre_total['price'] ?: 0
|
|
];
|
|
}
|
|
//统计总数
|
|
$total = $this->dao->preTotalFind($now_datebefor, $now_dateafter);
|
|
if ($total) {
|
|
$cha_count = intval($pre_total['count']) - intval($total['count']);
|
|
$pre_total['count'] = $pre_total['count'] == 0 ? 1 : $pre_total['count'];
|
|
$chartdata['cycle']['count'] = [
|
|
'data' => $total['count'] ?: 0,
|
|
'percent' => round((abs($cha_count) / intval($pre_total['count']) * 100), 2),
|
|
'is_plus' => $cha_count > 0 ? -1 : ($cha_count == 0 ? 0 : 1)
|
|
];
|
|
$cha_price = round($pre_total['price'], 2) - round($total['price'], 2);
|
|
$pre_total['price'] = $pre_total['price'] == 0 ? 1 : $pre_total['price'];
|
|
$chartdata['cycle']['price'] = [
|
|
'data' => $total['price'] ?: 0,
|
|
'percent' => round(abs($cha_price) / $pre_total['price'] * 100, 2),
|
|
'is_plus' => $cha_price > 0 ? -1 : ($cha_price == 0 ? 0 : 1)
|
|
];
|
|
}
|
|
return $chartdata;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 获取订单数量
|
|
* @return int
|
|
*/
|
|
public function storeOrderCount()
|
|
{
|
|
return $this->dao->storeOrderCount();
|
|
}
|
|
|
|
/**
|
|
* 新订单ID
|
|
* @param $status
|
|
* @return array
|
|
*/
|
|
public function newOrderId($status)
|
|
{
|
|
return $this->dao->search(['status' => $status, 'is_remind' => 0])->column('order_id', 'id');
|
|
}
|
|
|
|
/**
|
|
* 新订单修改
|
|
* @param $newOrderId
|
|
* @return \crmeb\basic\BaseModel
|
|
*/
|
|
public function newOrderUpdate($newOrderId)
|
|
{
|
|
return $this->dao->newOrderUpdates($newOrderId);
|
|
}
|
|
|
|
/**
|
|
* 增长率
|
|
* @param $left
|
|
* @param $right
|
|
* @return int|string
|
|
*/
|
|
public function growth($nowValue, $lastValue)
|
|
{
|
|
if ($lastValue == 0 && $nowValue == 0) return 0;
|
|
if ($lastValue == 0) return bcmul((string)$nowValue, '100', 2);
|
|
if ($nowValue == 0) return bcdiv(bcsub($nowValue, $lastValue, 2), $lastValue, 4) * 100;
|
|
return bcmul(bcdiv((bcsub($nowValue, $lastValue, 2)), $lastValue, 4), 100, 2);
|
|
}
|
|
|
|
/**
|
|
* 后台首页顶部统计
|
|
* @return array
|
|
* @author 吴汐
|
|
* @email 442384644@qq.com
|
|
* @date 2023/04/03
|
|
*/
|
|
public function homeStatics()
|
|
{
|
|
/** @var UserServices $userService */
|
|
$userService = app()->make(UserServices::class);
|
|
/** @var StoreProductLogServices $productLogServices */
|
|
$productLogServices = app()->make(StoreProductLogServices::class);
|
|
//TODO 销售额
|
|
//今日销售额
|
|
$today_sales = $this->dao->todaySales('today');
|
|
//昨日销售额
|
|
$yesterday_sales = $this->dao->todaySales('yesterday');
|
|
//日同比
|
|
$sales_today_ratio = $this->growth($today_sales, $yesterday_sales);
|
|
//总销售额
|
|
$total_sales = $this->dao->totalSales('month');
|
|
$sales = [
|
|
'today' => $today_sales,
|
|
'yesterday' => $yesterday_sales,
|
|
'today_ratio' => $sales_today_ratio,
|
|
'total' => $total_sales . '元',
|
|
'date' => '今日'
|
|
];
|
|
//TODO:用户访问量
|
|
//今日访问量
|
|
$today_visits = $productLogServices->count(['time' => 'today', 'type' => 'visit']);
|
|
//昨日访问量
|
|
$yesterday_visits = $productLogServices->count(['time' => 'yesterday', 'type' => 'visit']);
|
|
//日同比
|
|
$visits_today_ratio = $this->growth($today_visits, $yesterday_visits);
|
|
//总访问量
|
|
$total_visits = $productLogServices->count(['time' => 'month', 'type' => 'visit']);
|
|
$visits = [
|
|
'today' => $today_visits,
|
|
'yesterday' => $yesterday_visits,
|
|
'today_ratio' => $visits_today_ratio,
|
|
'total' => $total_visits . 'Pv',
|
|
'date' => '今日'
|
|
];
|
|
//TODO 订单量
|
|
//今日订单量
|
|
$today_order = $this->dao->todayOrderVisit('today', 1);
|
|
//昨日订单量
|
|
$yesterday_order = $this->dao->todayOrderVisit('yesterday', 1);
|
|
//订单日同比
|
|
$order_today_ratio = $this->growth($today_order, $yesterday_order);
|
|
//总订单量
|
|
$total_order = $this->dao->count(['time' => 'month', 'paid' => 1, 'refund_status' => 0, 'pid' => 0]);
|
|
$order = [
|
|
'today' => $today_order,
|
|
'yesterday' => $yesterday_order,
|
|
'today_ratio' => $order_today_ratio,
|
|
'total' => $total_order . '单',
|
|
'date' => '今日'
|
|
];
|
|
//TODO 用户
|
|
//今日新增用户
|
|
$today_user = $userService->todayAddVisits('today', 1);
|
|
//昨日新增用户
|
|
$yesterday_user = $userService->todayAddVisits('yesterday', 1);
|
|
//新增用户日同比
|
|
$user_today_ratio = $this->growth($today_user, $yesterday_user);
|
|
//所有用户
|
|
$total_user = $userService->count(['time' => 'month']);
|
|
$user = [
|
|
'today' => $today_user,
|
|
'yesterday' => $yesterday_user,
|
|
'today_ratio' => $user_today_ratio,
|
|
'total' => $total_user . '人',
|
|
'date' => '今日'
|
|
];
|
|
$info = array_values(compact('sales', 'visits', 'order', 'user'));
|
|
$info[0]['title'] = '销售额';
|
|
$info[1]['title'] = '用户访问量';
|
|
$info[2]['title'] = '订单量';
|
|
$info[3]['title'] = '新增用户';
|
|
$info[0]['total_name'] = '本月销售额';
|
|
$info[1]['total_name'] = '本月访问量';
|
|
$info[2]['total_name'] = '本月订单量';
|
|
$info[3]['total_name'] = '本月新增用户';
|
|
return $info;
|
|
}
|
|
|
|
/**
|
|
* 订单小票打印
|
|
* @param int $id
|
|
* @param bool $start
|
|
* @return bool|void
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @throws \Exception
|
|
*/
|
|
public function orderPrintTicket(int $id)
|
|
{
|
|
$order = $this->get($id);
|
|
if (!$order) {
|
|
throw new AdminException(400118);
|
|
}
|
|
/** @var StoreOrderCartInfoServices $cartServices */
|
|
$cartServices = app()->make(StoreOrderCartInfoServices::class);
|
|
$product = $cartServices->getCartInfoPrintProduct($order['id']);
|
|
if (!$product) {
|
|
throw new AdminException(400463);
|
|
}
|
|
$switch = (bool)sys_config('pay_success_printing_switch');
|
|
if (!$switch) {
|
|
throw new AdminException(400464);
|
|
}
|
|
if (sys_config('print_type', 1) == 1) {
|
|
$name = 'yi_lian_yun';
|
|
$configData = [
|
|
'clientId' => sys_config('printing_client_id', ''),
|
|
'apiKey' => sys_config('printing_api_key', ''),
|
|
'partner' => sys_config('develop_id', ''),
|
|
'terminal' => sys_config('terminal_number', '')
|
|
];
|
|
if (!$configData['clientId'] || !$configData['apiKey'] || !$configData['partner'] || !$configData['terminal']) {
|
|
throw new AdminException(400465);
|
|
}
|
|
} else {
|
|
$name = 'fei_e_yun';
|
|
$configData = [
|
|
'feyUser' => sys_config('fey_user', ''),
|
|
'feyUkey' => sys_config('fey_ukey', ''),
|
|
'feySn' => sys_config('fey_sn', '')
|
|
];
|
|
if (!$configData['feyUser'] || !$configData['feyUkey'] || !$configData['feySn']) {
|
|
throw new AdminException(400465);
|
|
}
|
|
}
|
|
$printer = new Printer($name, $configData);
|
|
$res = $printer->setPrinterContent([
|
|
'name' => sys_config('site_name'),
|
|
'url' => sys_config('site_url'),
|
|
'orderInfo' => is_object($order) ? $order->toArray() : $order,
|
|
'product' => $product
|
|
])->startPrinter();
|
|
if (!$res) {
|
|
throw new AdminException($printer->getError());
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 获取订单确认数据
|
|
* @param array $user
|
|
* @param $cartId
|
|
* @param bool $new
|
|
* @param int $addressId
|
|
* @param int $shipping_type
|
|
* @return array
|
|
* @throws \Psr\SimpleCache\InvalidArgumentException
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getOrderConfirmData(array $user, $cartId, bool $new, int $addressId, int $shipping_type = 1)
|
|
{
|
|
$addr = [];
|
|
/** @var UserAddressServices $addressServices */
|
|
$addressServices = app()->make(UserAddressServices::class);
|
|
if ($addressId) {
|
|
$addr = $addressServices->getAddress($addressId);
|
|
}
|
|
//没传地址id或地址已删除未找到 ||获取默认地址
|
|
if (!$addr) {
|
|
$addr = $addressServices->getUserDefaultAddress((int)$user['uid']);
|
|
}
|
|
if ($addr) {
|
|
$addr = $addr->toArray();
|
|
} else {
|
|
$addr = [];
|
|
}
|
|
if ($shipping_type == 2) $addr = [];
|
|
/** @var StoreCartServices $cartServices */
|
|
$cartServices = app()->make(StoreCartServices::class);
|
|
$cartGroup = $cartServices->getUserProductCartListV1($user['uid'], $cartId, $new, $addr, $shipping_type);
|
|
$data = [];
|
|
$data['storeFreePostage'] = $storeFreePostage = floatval(sys_config('store_free_postage')) ?: 0;//满额包邮金额
|
|
$validCartInfo = $cartGroup['valid'];
|
|
if (count($validCartInfo)) {
|
|
if (isset($validCartInfo[0]['productInfo']['is_virtual']) && $validCartInfo[0]['productInfo']['is_virtual']) {
|
|
$data['virtual_type'] = 1;
|
|
$data['deduction'] = true;
|
|
} else {
|
|
if ($validCartInfo[0]['productInfo']['virtual_type'] == 3) {
|
|
$data['virtual_type'] = 1;
|
|
$data['deduction'] = true;
|
|
} else {
|
|
$data['virtual_type'] = 0;
|
|
}
|
|
}
|
|
}
|
|
/** @var StoreOrderComputedServices $computedServices */
|
|
$computedServices = app()->make(StoreOrderComputedServices::class);
|
|
$priceGroup = $computedServices->getOrderPriceGroup($storeFreePostage, $validCartInfo, $addr, $user);
|
|
$validCartInfo = $priceGroup['cartInfo'] ?? $validCartInfo;
|
|
$other = [
|
|
'offlinePostage' => sys_config('offline_postage'),
|
|
'integralRatio' => sys_config('integral_ratio')
|
|
];
|
|
$cartIdA = explode(',', $cartId);
|
|
$seckill_id = 0;
|
|
$combination_id = 0;
|
|
$bargain_id = 0;
|
|
$advance_id = 0;
|
|
if (count($cartIdA) == 1) {
|
|
$seckill_id = $cartGroup['deduction']['seckill_id'] ?? 0;
|
|
$combination_id = $cartGroup['deduction']['combination_id'] ?? 0;
|
|
$bargain_id = $cartGroup['deduction']['bargain_id'] ?? 0;
|
|
$advance_id = $cartGroup['deduction']['advance_id'] ?? 0;
|
|
}
|
|
$data['valid_count'] = count($validCartInfo);
|
|
$data['deduction'] = $seckill_id || $combination_id || $bargain_id || $advance_id;
|
|
$data['addressInfo'] = $addr;
|
|
$data['seckill_id'] = $seckill_id;
|
|
$data['combination_id'] = $combination_id;
|
|
$data['bargain_id'] = $bargain_id;
|
|
$data['advance_id'] = $advance_id;
|
|
$data['cartInfo'] = $cartGroup['cartInfo'];
|
|
$data['custom_form'] = json_decode($cartGroup['cartInfo'][0]['productInfo']['custom_form'], true) ?? [];
|
|
$data['priceGroup'] = $priceGroup;
|
|
$data['orderKey'] = $this->cacheOrderInfo($user['uid'], $validCartInfo, $priceGroup, $other);
|
|
$data['offlinePostage'] = $other['offlinePostage'];
|
|
/** @var UserLevelServices $levelServices */
|
|
$levelServices = app()->make(UserLevelServices::class);
|
|
$userLevel = $levelServices->getUerLevelInfoByUid($user['uid']);
|
|
if (isset($user['pwd'])) unset($user['pwd']);
|
|
$user['vip'] = $userLevel !== false;
|
|
if ($user['vip']) {
|
|
$user['vip_id'] = $userLevel['id'] ?? 0;
|
|
$user['discount'] = $userLevel['discount'] ?? 0;
|
|
}
|
|
$data['userInfo'] = $user;
|
|
$data['integralRatio'] = $other['integralRatio'];
|
|
$data['offline_pay_status'] = (int)sys_config('offline_pay_status') ?? (int)2;
|
|
$data['yue_pay_status'] = (int)sys_config('balance_func_status') && (int)sys_config('yue_pay_status') == 1 ? (int)1 : (int)2;//余额支付 1 开启 2 关闭
|
|
$data['pay_weixin_open'] = sys_config('pay_weixin_open', '0') != '0';//微信支付 1 开启 0 关闭
|
|
$data['friend_pay_status'] = (int)sys_config('friend_pay_status') ?? 0;//好友代付 1 开启 0 关闭
|
|
$data['store_self_mention'] = (int)sys_config('store_self_mention') ?? 0;//门店自提是否开启
|
|
/** @var SystemStoreServices $systemStoreServices */
|
|
$systemStoreServices = app()->make(SystemStoreServices::class);
|
|
$store_count = $systemStoreServices->count(['type' => 0]);
|
|
$data['store_self_mention'] = $data['store_self_mention'] && $store_count;
|
|
|
|
$data['ali_pay_status'] = sys_config('ali_pay_status', '0') != '0';//支付包支付 1 开启 0 关闭
|
|
$data['system_store'] = [];//门店信息
|
|
/** @var UserInvoiceServices $userInvoice */
|
|
$userInvoice = app()->make(UserInvoiceServices::class);
|
|
$invoice_func = $userInvoice->invoiceFuncStatus();
|
|
$data['invoice_func'] = $invoice_func['invoice_func'];
|
|
$data['special_invoice'] = $invoice_func['special_invoice'];
|
|
|
|
/** @var UserBillServices $userBillServices */
|
|
$userBillServices = app()->make(UserBillServices::class);
|
|
$data['usable_integral'] = bcsub((string)$user['integral'], (string)$userBillServices->getBillSum(['uid' => $user['uid'], 'is_frozen' => 1]), 0);
|
|
$data['integral_open'] = sys_config('integral_ratio', 0) > 0;
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 缓存订单信息
|
|
* @param $uid
|
|
* @param $cartInfo
|
|
* @param $priceGroup
|
|
* @param array $other
|
|
* @param int $cacheTime
|
|
* @return string
|
|
* @throws \Psr\SimpleCache\InvalidArgumentException
|
|
*/
|
|
public function cacheOrderInfo($uid, $cartInfo, $priceGroup, $other = [], $cacheTime = 600)
|
|
{
|
|
$key = $this->getCacheKey();
|
|
CacheService::set('user_order_' . $uid . $key, compact('cartInfo', 'priceGroup', 'other'), $cacheTime);
|
|
return $key;
|
|
}
|
|
|
|
/**
|
|
* 使用雪花算法生成订单ID
|
|
* @return string
|
|
* @throws \Exception
|
|
*/
|
|
public function getCacheKey(string $prefix = '')
|
|
{
|
|
$snowflake = new \Godruoyi\Snowflake\Snowflake();
|
|
//32位
|
|
if (PHP_INT_SIZE == 4) {
|
|
$id = abs($snowflake->id());
|
|
} else {
|
|
$id = $snowflake->setStartTimeStamp(strtotime('2020-06-05') * 1000)->id();
|
|
}
|
|
return $prefix . $id;
|
|
}
|
|
|
|
/**获取用户购买活动产品的次数
|
|
* @param $uid
|
|
* @param $seckill_id
|
|
* @return int
|
|
*/
|
|
public function activityProductCount(array $where)
|
|
{
|
|
return $this->dao->count($where);
|
|
}
|
|
|
|
/**
|
|
* 获取订单缓存信息
|
|
* @param int $uid
|
|
* @param string $key
|
|
* @return |null
|
|
*/
|
|
public function getCacheOrderInfo(int $uid, string $key)
|
|
{
|
|
$cacheName = 'user_order_' . $uid . $key;
|
|
if (!CacheService::has($cacheName)) return null;
|
|
return CacheService::get($cacheName);
|
|
}
|
|
|
|
/**
|
|
* 获取拼团的订单id
|
|
* @param int $pid
|
|
* @param int $uid
|
|
* @return mixed
|
|
*/
|
|
public function getStoreIdPink(int $pid, int $uid)
|
|
{
|
|
return $this->dao->value(['uid' => $uid, 'pink_id' => $pid, 'is_del' => 0], 'order_id');
|
|
}
|
|
|
|
/**
|
|
* 判断当前订单中是否有拼团
|
|
* @param int $pid
|
|
* @param int $uid
|
|
* @return int
|
|
*/
|
|
public function getIsOrderPink($pid = 0, $uid = 0)
|
|
{
|
|
return $this->dao->count(['uid' => $uid, 'pink_id' => $pid, 'refund_status' => 0, 'is_del' => 0]);
|
|
}
|
|
|
|
/**
|
|
* 判断支付方式是否开启
|
|
* @param $payType
|
|
* @return bool
|
|
*/
|
|
public function checkPaytype(string $payType)
|
|
{
|
|
$res = false;
|
|
switch ($payType) {
|
|
case PayServices::WEIXIN_PAY:
|
|
$res = sys_config('pay_weixin_open', '0') != '0';
|
|
break;
|
|
case PayServices::YUE_PAY:
|
|
$res = sys_config('balance_func_status') && sys_config('yue_pay_status') == 1;
|
|
break;
|
|
case 'offline':
|
|
$res = sys_config('offline_pay_status') == 1;
|
|
break;
|
|
case PayServices::ALIAPY_PAY:
|
|
$res = sys_config('ali_pay_status', '0') != '0';
|
|
break;
|
|
case PayServices::FRIEND:
|
|
$res = sys_config('friend_pay_status', 1) == 1;
|
|
break;
|
|
case PayServices::ALLIN_PAY:
|
|
$res = sys_config('allin_pay_status') == 1;
|
|
}
|
|
return $res;
|
|
}
|
|
|
|
|
|
/**
|
|
* 修改支付方式为线下支付
|
|
* @param string $orderId
|
|
* @return bool|\crmeb\basic\BaseModel
|
|
*/
|
|
public function setOrderTypePayOffline(string $orderId)
|
|
{
|
|
if (($count = strpos($orderId, '_')) !== false) {
|
|
$orderId = substr($orderId, $count + 1);
|
|
}
|
|
if (sys_config('offline_postage', 0) == 1) {
|
|
$orderInfo = $this->dao->get(['order_id' => $orderId]);
|
|
$cartInfoService = app()->make(StoreOrderCartInfoServices::class);
|
|
$cartInfo = $cartInfoService->getColumn(['oid' => $orderInfo['id']], 'cart_info', 'id');
|
|
foreach ($cartInfo as $key => &$item) {
|
|
$item_arr = json_decode($item, true);
|
|
$item_arr['postage_price'] = $item_arr['origin_postage_price'] = 0;
|
|
$cartInfoService->update(['id' => $key], ['cart_info' => json_encode($item_arr)]);
|
|
}
|
|
return $this->dao->update($orderId, [
|
|
'pay_type' => 'offline',
|
|
'pay_price' => bcsub((string)$orderInfo['pay_price'], (string)$orderInfo['pay_postage'], 2),
|
|
'pay_postage' => 0
|
|
], 'order_id');
|
|
}
|
|
return $this->dao->update($orderId, ['pay_type' => 'offline'], 'order_id');
|
|
}
|
|
|
|
/**
|
|
* 删除订单
|
|
* @param string $uni
|
|
* @param int $uid
|
|
* @return bool
|
|
* @throws \Psr\SimpleCache\InvalidArgumentException
|
|
*/
|
|
public function removeOrder(string $uni, int $uid)
|
|
{
|
|
$order = $this->getUserOrderDetail($uni, $uid);
|
|
if (!$order) {
|
|
throw new ApiException(410173);
|
|
}
|
|
$order = $this->tidyOrder($order);
|
|
if ($order['_status']['_type'] != 0 && $order['_status']['_type'] != -2 && $order['_status']['_type'] != 4)
|
|
throw new ApiException(410256);
|
|
|
|
$order->is_del = 1;
|
|
/** @var StoreOrderStatusServices $statusService */
|
|
$statusService = app()->make(StoreOrderStatusServices::class);
|
|
$res = $statusService->save([
|
|
'oid' => $order['id'],
|
|
'change_type' => 'remove_order',
|
|
'change_message' => '删除订单',
|
|
'change_time' => time()
|
|
]);
|
|
if ($order->save() && $res) {
|
|
return true;
|
|
} else
|
|
throw new ApiException(100020);
|
|
}
|
|
|
|
/**
|
|
* 取消订单
|
|
* @param $order_id
|
|
* @param $uid
|
|
* @return bool|void
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function cancelOrder($order_id, int $uid)
|
|
{
|
|
$order = $this->dao->getOne(['order_id' => $order_id, 'uid' => $uid, 'is_del' => 0]);
|
|
if (!$order) {
|
|
throw new ApiException(410173);
|
|
}
|
|
if ($order->paid) {
|
|
throw new ApiException(410257);
|
|
}
|
|
/** @var StoreOrderCartInfoServices $cartServices */
|
|
$cartServices = app()->make(StoreOrderCartInfoServices::class);
|
|
$cartInfo = $cartServices->getOrderCartInfo($order['id']);
|
|
/** @var StoreOrderRefundServices $refundServices */
|
|
$refundServices = app()->make(StoreOrderRefundServices::class);
|
|
|
|
$this->transaction(function () use ($refundServices, $order) {
|
|
$res = $refundServices->integralAndCouponBack($order, 'cancel') && $refundServices->regressionStock($order);
|
|
$order->is_del = 1;
|
|
if (!($res && $order->save())) {
|
|
throw new ApiException(100020);
|
|
}
|
|
});
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 判断订单完成
|
|
* @param StoreProductReplyServices $replyServices
|
|
* @param array $uniqueList
|
|
* @param $oid
|
|
* @return mixed
|
|
*/
|
|
public function checkOrderOver($replyServices, array $uniqueList, $oid)
|
|
{
|
|
//订单商品全部评价完成
|
|
$replyServices->count(['unique' => $uniqueList, 'oid' => $oid]);
|
|
if ($replyServices->count(['unique' => $uniqueList, 'oid' => $oid]) == count($uniqueList)) {
|
|
$res = $this->dao->update($oid, ['status' => '3']);
|
|
if (!$res) throw new ApiException(100007);
|
|
/** @var StoreOrderStatusServices $statusService */
|
|
$statusService = app()->make(StoreOrderStatusServices::class);
|
|
$statusService->save([
|
|
'oid' => $oid,
|
|
'change_type' => 'check_order_over',
|
|
'change_message' => '用户评价',
|
|
'change_time' => time()
|
|
]);
|
|
$order = $this->dao->get((int)$oid, ['id,pid,status']);
|
|
if ($order && $order['pid'] > 0) {
|
|
$p_order = $this->dao->get((int)$order['pid'], ['id,pid,status']);
|
|
//主订单全部收货 且子订单没有待评价 有已完成
|
|
if ($p_order['status'] == 2 && !$this->dao->count(['pid' => $order['pid'], 'status' => 3]) && $this->dao->count(['pid' => $order['pid'], 'status' => 4])) {
|
|
$this->dao->update($p_order['id'], ['status' => 3]);
|
|
$statusService->save([
|
|
'oid' => $p_order['id'],
|
|
'change_type' => 'check_order_over',
|
|
'change_message' => '用户评价',
|
|
'change_time' => time()
|
|
]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 某个用户订单
|
|
* @param int $uid
|
|
* @param UserServices $userServices
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getUserOrderList(int $uid)
|
|
{
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$user = $userServices->getUserInfo($uid, 'uid');
|
|
if (!$user) {
|
|
throw new AdminException(100026);
|
|
}
|
|
[$page, $limit] = $this->getPageValue();
|
|
$where = ['uid' => $uid, 'paid' => 1, 'refund_status' => 0, 'pid' => 0];
|
|
$list = $this->dao->getStairOrderList($where, 'order_id,real_name,total_num,total_price,pay_price,FROM_UNIXTIME(pay_time,"%Y-%m-%d") as pay_time,paid,pay_type,pink_id,seckill_id,bargain_id', $page, $limit);
|
|
$count = $this->dao->count($where);
|
|
return compact('list', 'count');
|
|
}
|
|
|
|
|
|
/**
|
|
* 获取推广订单列表
|
|
* @param int $uid
|
|
* @param $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getUserStairOrderList(int $uid, $where)
|
|
{
|
|
$where_data = [];
|
|
if (isset($where['type'])) {
|
|
switch ((int)$where['type']) {
|
|
case 1:
|
|
$where_data['spread_uid'] = $uid;
|
|
break;
|
|
case 2:
|
|
$where_data['spread_two_uid'] = $uid;
|
|
break;
|
|
default:
|
|
$where_data['spread_or_uid'] = $uid;
|
|
break;
|
|
}
|
|
}
|
|
if (isset($where['data']) && $where['data']) {
|
|
$where_data['time'] = $where['data'];
|
|
}
|
|
if (isset($where['order_id']) && $where['order_id']) {
|
|
$where_data['order_id'] = $where['order_id'];
|
|
}
|
|
//推广订单只显示支付过并且未退款的订单
|
|
$where_data['paid'] = 1;
|
|
$where_data['refund_status'] = 0;
|
|
[$page, $limit] = $this->getPageValue();
|
|
$list = $this->dao->getStairOrderList($where_data, '*', $page, $limit);
|
|
$count = $this->dao->count($where_data);
|
|
return compact('list', 'count');
|
|
}
|
|
|
|
/**
|
|
* 订单导出
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getExportList(array $where)
|
|
{
|
|
$list = $this->dao->search($where)->order('id desc')->select()->toArray();
|
|
foreach ($list as &$item) {
|
|
/** @var StoreOrderCartInfoServices $orderCart */
|
|
$orderCart = app()->make(StoreOrderCartInfoServices::class);
|
|
$_info = $orderCart->getCartColunm(['oid' => $item['id']], 'cart_info', 'unique');
|
|
foreach ($_info as $k => $v) {
|
|
$cart_info = is_string($v) ? json_decode($v, true) : $v;
|
|
if (!isset($cart_info['productInfo'])) $cart_info['productInfo'] = [];
|
|
$_info[$k] = $cart_info;
|
|
unset($cart_info);
|
|
}
|
|
$item['_info'] = $_info;
|
|
/** @var WechatUserServices $wechatUserService */
|
|
$wechatUserService = app()->make(WechatUserServices::class);
|
|
$item['sex'] = $wechatUserService->value(['uid' => $item['uid']], 'sex');
|
|
if ($item['pink_id'] || $item['combination_id']) {
|
|
/** @var StorePinkServices $pinkService */
|
|
$pinkService = app()->make(StorePinkServices::class);
|
|
$pinkStatus = $pinkService->value(['order_id_key' => $item['id']], 'status');
|
|
switch ($pinkStatus) {
|
|
case 1:
|
|
$item['pink_name'] = '[拼团订单]正在进行中';
|
|
$item['color'] = '#f00';
|
|
break;
|
|
case 2:
|
|
$item['pink_name'] = '[拼团订单]已完成';
|
|
$item['color'] = '#00f';
|
|
break;
|
|
case 3:
|
|
$item['pink_name'] = '[拼团订单]未完成';
|
|
$item['color'] = '#f0f';
|
|
break;
|
|
default:
|
|
$item['pink_name'] = '[拼团订单]历史订单';
|
|
$item['color'] = '#457856';
|
|
break;
|
|
}
|
|
} elseif ($item['seckill_id']) {
|
|
$item['pink_name'] = '[秒杀订单]';
|
|
$item['color'] = '#32c5e9';
|
|
} elseif ($item['bargain_id']) {
|
|
$item['pink_name'] = '[砍价订单]';
|
|
$item['color'] = '#12c5e9';
|
|
} else {
|
|
if ($item['shipping_type'] == 1) {
|
|
$item['pink_name'] = '[普通订单]';
|
|
$item['color'] = '#895612';
|
|
} else if ($item['shipping_type'] == 2) {
|
|
$item['pink_name'] = '[核销订单]';
|
|
$item['color'] = '#8956E8';
|
|
}
|
|
}
|
|
}
|
|
return $list;
|
|
}
|
|
|
|
/**
|
|
* 自动取消订单
|
|
* @return bool
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function orderUnpaidCancel()
|
|
{
|
|
//系统预设取消订单时间段
|
|
$keyValue = ['order_cancel_time', 'order_activity_time', 'order_bargain_time', 'order_seckill_time', 'order_pink_time'];
|
|
//获取配置
|
|
$systemValue = SystemConfigService::more($keyValue);
|
|
//格式化数据
|
|
$systemValue = Arr::setValeTime($keyValue, is_array($systemValue) ? $systemValue : []);
|
|
$list = $this->dao->getOrderUnPaidList();
|
|
/** @var StoreOrderRefundServices $refundServices */
|
|
$refundServices = app()->make(StoreOrderRefundServices::class);
|
|
foreach ($list as $order) {
|
|
if ($order['pink_id'] || $order['combination_id']) {
|
|
$secs = $systemValue['order_pink_time'] ?: $systemValue['order_activity_time'];
|
|
} elseif ($order['seckill_id']) {
|
|
$secs = $systemValue['order_seckill_time'] ?: $systemValue['order_activity_time'];
|
|
} elseif ($order['bargain_id']) {
|
|
$secs = $systemValue['order_bargain_time'] ?: $systemValue['order_activity_time'];
|
|
} else {
|
|
$secs = $systemValue['order_cancel_time'];
|
|
}
|
|
if ($secs == 0) return true;
|
|
if (($order['add_time'] + bcmul($secs, '3600', 0)) < time()) {
|
|
try {
|
|
$this->transaction(function () use ($order, $refundServices) {
|
|
//回退积分和优惠卷
|
|
$res = $refundServices->integralAndCouponBack($order, 'cancel');
|
|
//回退库存和销量
|
|
$res = $res && $refundServices->regressionStock($order);
|
|
//修改订单状态
|
|
$res = $res && $this->dao->update($order['id'], ['is_del' => 1, 'mark' => '订单未支付已超过系统预设时间']);
|
|
if (!$res) {
|
|
Log::error('订单号' . $order['order_id'] . '自动取消订单失败');
|
|
}
|
|
return true;
|
|
});
|
|
|
|
/** @var StoreOrderCartInfoServices $cartServices */
|
|
$cartServices = app()->make(StoreOrderCartInfoServices::class);
|
|
$cartInfo = $cartServices->getOrderCartInfo((int)$order['id']);
|
|
|
|
} catch (\Throwable $e) {
|
|
Log::error('自动取消订单失败,失败原因:' . $e->getMessage(), $e->getTrace());
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**根据时间获取当天或昨天订单营业额
|
|
* @param array $where
|
|
* @return float|int
|
|
*/
|
|
public function getOrderMoneyByWhere(array $where, string $sum_field, string $selectType, string $group = "")
|
|
{
|
|
|
|
switch ($selectType) {
|
|
case "sum" :
|
|
return $this->dao->getDayTotalMoney($where, $sum_field);
|
|
case "group" :
|
|
return $this->dao->getDayGroupMoney($where, $sum_field, $group);
|
|
}
|
|
}
|
|
|
|
/**统计时间段订单数
|
|
* @param array $where
|
|
* @param string $sum_field
|
|
*/
|
|
public function getOrderCountByWhere(array $where)
|
|
{
|
|
return $this->dao->getDayOrderCount($where);
|
|
}
|
|
|
|
/**分组统计时间段订单数
|
|
* @param $where
|
|
* @return mixed
|
|
*/
|
|
public function getOrderGroupCountByWhere($where)
|
|
{
|
|
return $this->dao->getOrderGroupCount($where);
|
|
}
|
|
|
|
/** 时间段支付订单人数
|
|
* @param $where
|
|
* @return mixed
|
|
*/
|
|
public function getPayOrderPeopleByWhere($where)
|
|
{
|
|
return $this->dao->getPayOrderPeople($where);
|
|
}
|
|
|
|
/**时间段分组统计支付订单人数
|
|
* @param $where
|
|
* @return mixed
|
|
*/
|
|
public function getPayOrderGroupPeopleByWhere($where)
|
|
{
|
|
return $this->dao->getPayOrderGroupPeople($where);
|
|
}
|
|
|
|
/**
|
|
* 退款订单列表
|
|
* @param array $where
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function refundList(array $where)
|
|
{
|
|
[$page, $limit] = $this->getPageValue();
|
|
if ($where['refund_reason_time'] != '') $where['refund_reason_time'] = explode('-', $where['refund_reason_time']);
|
|
$data = $this->dao->getRefundList($where, $page, $limit);
|
|
if ($data['list']) $data['list'] = $this->tidyOrderList($data['list']);
|
|
$data['num'] = [
|
|
0 => ['name' => '全部', 'num' => $this->dao->count(['refund_type' => 0, 'is_system_del' => 0])],
|
|
1 => ['name' => '仅退款', 'num' => $this->dao->count(['refund_type' => 1, 'is_system_del' => 0])],
|
|
2 => ['name' => '退货退款', 'num' => $this->dao->count(['refund_type' => 2, 'is_system_del' => 0])],
|
|
3 => ['name' => '拒绝退款', 'num' => $this->dao->count(['refund_type' => 3, 'is_system_del' => 0])],
|
|
4 => ['name' => '商品待退货', 'num' => $this->dao->count(['refund_type' => 4, 'is_system_del' => 0])],
|
|
5 => ['name' => '退货待收货', 'num' => $this->dao->count(['refund_type' => 5, 'is_system_del' => 0])],
|
|
6 => ['name' => '已退款', 'num' => $this->dao->count(['refund_type' => 6, 'is_system_del' => 0])]
|
|
];
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 商家同意退款,等待客户退货
|
|
* @param $order_id
|
|
* @return bool
|
|
*/
|
|
public function agreeRefund($order_id)
|
|
{
|
|
$res = $this->dao->update(['id' => $order_id], ['refund_type' => 4]);
|
|
/** @var StoreOrderStatusServices $statusService */
|
|
$statusService = app()->make(StoreOrderStatusServices::class);
|
|
$statusService->save([
|
|
'oid' => $order_id,
|
|
'change_type' => 'refund_express',
|
|
'change_message' => '等待用户退货',
|
|
'change_time' => time()
|
|
]);
|
|
if ($res) return true;
|
|
throw new AdminException(100005);
|
|
}
|
|
|
|
/**
|
|
* @param array $where
|
|
* @param array|string[] $field
|
|
* @param array $with
|
|
* @param int $page
|
|
* @param int $limit
|
|
* @param string $order
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getSplitOrderList(array $where, array $field = ['*'], array $with = [], $page = 0, $limit = 0, $order = 'pay_time DESC,id DESC')
|
|
{
|
|
$data = $this->dao->getOrderList($where, $field, $page, $limit, $with, $order);
|
|
if ($data) {
|
|
$data = $this->tidyOrderList($data);
|
|
}
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 代付详情
|
|
* @param $orderId
|
|
* @param $uid
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getFriendDetail($orderId, $uid)
|
|
{
|
|
$orderInfo = $this->dao->getOne(['order_id' => $orderId, 'is_del' => 0]);
|
|
if ($orderInfo) {
|
|
$orderInfo = $orderInfo->toArray();
|
|
} else {
|
|
throw new ApiException(410173);
|
|
}
|
|
$orderInfo = $this->tidyOrder($orderInfo, true);
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$userInfo = $userServices->get($orderInfo['uid']);
|
|
$friendInfo = $userServices->get($orderInfo['pay_uid']);
|
|
$info = [
|
|
'id' => $orderInfo['id'],
|
|
'order_id' => $orderInfo['order_id'],
|
|
'uid' => $orderInfo['uid'],
|
|
'avatar' => $userInfo['avatar'],
|
|
'nickname' => $userInfo['nickname'],
|
|
'cartInfo' => $orderInfo['cartInfo'],
|
|
'paid' => $orderInfo['paid'],
|
|
'total_num' => $orderInfo['total_num'],
|
|
'pay_price' => $orderInfo['pay_price'],
|
|
'type' => $uid == $orderInfo['uid'] ? 0 : 1,
|
|
'pay_uid' => isset($friendInfo) ? $friendInfo['uid'] : 0,
|
|
'pay_nickname' => isset($friendInfo) ? $friendInfo['nickname'] : '',
|
|
'pay_avatar' => isset($friendInfo) ? $friendInfo['avatar'] : '',
|
|
];
|
|
return $info;
|
|
}
|
|
|
|
/**
|
|
* 获取退货商品列表
|
|
* @param array $cart_ids
|
|
* @param int $id
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function refundCartInfoList(array $cart_ids = [], int $id = 0)
|
|
{
|
|
$orderInfo = $this->dao->get($id);
|
|
if (!$orderInfo) {
|
|
throw new ApiException(410173);
|
|
}
|
|
$orderInfo = $this->tidyOrder($orderInfo, true);
|
|
$cartInfo = $orderInfo['cartInfo'] ?? [];
|
|
$data = [];
|
|
if ($cart_ids) {
|
|
foreach ($cart_ids as $cart) {
|
|
if (!isset($cart['cart_id']) || !$cart['cart_id'] || !isset($cart['cart_num']) || !$cart['cart_num'] || $cart['cart_num'] <= 0) {
|
|
throw new ApiException(410223);
|
|
}
|
|
}
|
|
$cart_ids = array_combine(array_column($cart_ids, 'cart_id'), $cart_ids);
|
|
$i = 0;
|
|
foreach ($cartInfo as $item) {
|
|
if (isset($cart_ids[$item['id']])) {
|
|
$data['cartInfo'][$i] = $item;
|
|
if (isset($cart_ids[$item['id']]['cart_num'])) $data['cartInfo'][$i]['cart_num'] = $cart_ids[$item['id']]['cart_num'];
|
|
$i++;
|
|
}
|
|
}
|
|
}
|
|
$data['_status'] = $orderInfo['_status'] ?? [];
|
|
$data['_status']['_is_back'] = $orderInfo['delivery_type'] != 'fictitious' && $orderInfo['virtual_type'] == 0;
|
|
$data['cartInfo'] = $data['cartInfo'] ?? $cartInfo;
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 再次下单
|
|
* @param string $uni
|
|
* @param int $uid
|
|
* @return array
|
|
*/
|
|
public function againOrder(StoreCartServices $services, string $uni, int $uid): array
|
|
{
|
|
if (!$uni) throw new ApiException(100100);
|
|
$order = $this->getUserOrderDetail($uni, $uid);
|
|
if (!$order) throw new ApiException(410173);
|
|
$order = $this->tidyOrder($order, true);
|
|
$cateId = [];
|
|
|
|
foreach ($order['cartInfo'] as $v) {
|
|
if ($v['combination_id']) throw new ApiException(410258);
|
|
elseif ($v['bargain_id']) throw new ApiException(410259);
|
|
elseif ($v['seckill_id']) throw new ApiException(410260);
|
|
elseif ($v['advance_id']) throw new ApiException(410261);
|
|
else $cateId[] = $services->setCart($uid, (int)$v['product_id'], (int)$v['cart_num'], $v['productInfo']['attrInfo']['unique'] ?? '', '0', true);
|
|
}
|
|
if (!$cateId) throw new ApiException(410262);
|
|
return $cateId;
|
|
}
|
|
|
|
/**
|
|
* 支付宝单独支付
|
|
* @param OrderPayServices $payServices
|
|
* @param OtherOrderServices $services
|
|
* @param string $key
|
|
* @param string $quitUrl
|
|
* @return array|string
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function aliPayOrder(OrderPayServices $payServices, OtherOrderServices $services, string $key, string $quitUrl)
|
|
{
|
|
if (!$key) {
|
|
throw new ApiException(100100);
|
|
}
|
|
if (!$quitUrl) {
|
|
throw new ApiException(100100);
|
|
}
|
|
|
|
$orderCache = CacheService::get($key);
|
|
if (!$orderCache || !isset($orderCache['order_id'])) {
|
|
throw new ApiException(410263);
|
|
}
|
|
|
|
$payType = isset($orderCache['other_pay_type']) && $orderCache['other_pay_type'] == true;
|
|
if ($payType) {
|
|
$orderInfo = $services->getOne(['order_id' => $orderCache['order_id'], 'is_del' => 0, 'paid' => 0]);
|
|
} else {
|
|
$orderInfo = $this->get(['order_id' => $orderCache['order_id'], 'paid' => 0, 'is_del' => 0]);
|
|
}
|
|
|
|
if (!$orderInfo) {
|
|
throw new ApiException(410264);
|
|
}
|
|
return $payServices->beforePay($orderInfo->toArray(), PayServices::ALIAPY_PAY, ['quitUrl' => $quitUrl]);
|
|
}
|
|
|
|
/**
|
|
* 用户订单信息
|
|
* @param StoreOrderEconomizeServices $services
|
|
* @param string $uni
|
|
* @param int $uid
|
|
* @return void
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
*/
|
|
public function getUserOrderByKey(StoreOrderEconomizeServices $services, string $uni, int $uid): array
|
|
{
|
|
$order = $this->getUserOrderDetail($uni, $uid, ['split', 'invoice']);
|
|
if (!$order) throw new ApiException(410294);
|
|
$order = $order->toArray();
|
|
$splitNum = [];
|
|
//是否开启门店自提
|
|
$store_self_mention = sys_config('store_self_mention');
|
|
//关闭门店自提后 订单隐藏门店信息
|
|
if ($store_self_mention == 0) $order['shipping_type'] = 1;
|
|
if ($order['verify_code']) {
|
|
$verify_code = $order['verify_code'];
|
|
$verify[] = substr($verify_code, 0, 4);
|
|
$verify[] = substr($verify_code, 4, 4);
|
|
$verify[] = substr($verify_code, 8);
|
|
$order['_verify_code'] = implode(' ', $verify);
|
|
}
|
|
$order['add_time_y'] = date('Y-m-d', $order['add_time']);
|
|
$order['add_time_h'] = date('H:i:s', $order['add_time']);
|
|
$order['system_store'] = false;
|
|
if ($order['store_id']) {
|
|
/** @var SystemStoreServices $storeServices */
|
|
$storeServices = app()->make(SystemStoreServices::class);
|
|
$order['system_store'] = $storeServices->getStoreDispose($order['store_id']);
|
|
}
|
|
if (($order['shipping_type'] === 2 || $order['delivery_uid'] != 0) && $order['verify_code']) {
|
|
$name = $order['verify_code'] . '.jpg';
|
|
/** @var SystemAttachmentServices $attachmentServices */
|
|
$attachmentServices = app()->make(SystemAttachmentServices::class);
|
|
$imageInfo = $attachmentServices->getInfo(['name' => $name]);
|
|
$siteUrl = sys_config('site_url');
|
|
if (!$imageInfo) {
|
|
$imageInfo = PosterServices::getQRCodePath($order['verify_code'], $name);
|
|
if (is_array($imageInfo)) {
|
|
$attachmentServices->attachmentAdd($imageInfo['name'], $imageInfo['size'], $imageInfo['type'], $imageInfo['dir'], $imageInfo['thumb_path'], 1, $imageInfo['image_type'], $imageInfo['time'], 2);
|
|
$url = $imageInfo['dir'];
|
|
} else
|
|
$url = '';
|
|
} else $url = $imageInfo['att_dir'];
|
|
if (isset($imageInfo['image_type']) && $imageInfo['image_type'] == 1) $url = $siteUrl . $url;
|
|
$order['code'] = $url;
|
|
}
|
|
$order['mapKey'] = sys_config('tengxun_map_key');
|
|
$order['yue_pay_status'] = (int)sys_config('balance_func_status') && (int)sys_config('yue_pay_status') == 1 ? (int)1 : (int)2;//余额支付 1 开启 2 关闭
|
|
$order['pay_weixin_open'] = sys_config('pay_weixin_open') != '0';//微信支付 1 开启 0 关闭
|
|
$order['ali_pay_status'] = sys_config('ali_pay_status', '0') != '0';//支付包支付 1 开启 0 关闭
|
|
$order['friend_pay_status'] = (int)sys_config('friend_pay_status') ?? 0;//好友代付 1 开启 0 关闭
|
|
$orderData = $this->tidyOrder($order, true, true);
|
|
$vipTruePrice = $memberPrice = $levelPrice = 0;
|
|
foreach ($orderData['cartInfo'] ?? [] as $key => $cart) {
|
|
$vipTruePrice = bcadd((string)$vipTruePrice, (string)$cart['vip_sum_truePrice'], 2);
|
|
if ($cart['price_type'] == 'member') $memberPrice = bcadd((string)$memberPrice, (string)$cart['vip_sum_truePrice'], 2);
|
|
if ($cart['price_type'] == 'level') $levelPrice = bcadd((string)$levelPrice, (string)$cart['vip_sum_truePrice'], 2);
|
|
if (isset($splitNum[$cart['id']])) {
|
|
$orderData['cartInfo'][$key]['cart_num'] = $cart['cart_num'] - $splitNum[$cart['id']];
|
|
if ($orderData['cartInfo'][$key]['cart_num'] == 0) unset($orderData['cartInfo'][$key]);
|
|
}
|
|
}
|
|
$orderData['cartInfo'] = array_merge($orderData['cartInfo']);
|
|
$orderData['vip_true_price'] = $vipTruePrice;
|
|
$orderData['levelPrice'] = $levelPrice;
|
|
$orderData['memberPrice'] = $memberPrice;
|
|
$economize = $services->get(['order_id' => $order['order_id']], ['postage_price', 'member_price']);
|
|
if ($economize) {
|
|
$orderData['postage_price'] = $economize['postage_price'];
|
|
$orderData['member_price'] = $economize['member_price'];
|
|
} else {
|
|
$orderData['postage_price'] = 0;
|
|
$orderData['member_price'] = 0;
|
|
}
|
|
$orderData['routine_contact_type'] = sys_config('routine_contact_type', 0);
|
|
/** @var UserInvoiceServices $userInvoice */
|
|
$userInvoice = app()->make(UserInvoiceServices::class);
|
|
$invoice_func = $userInvoice->invoiceFuncStatus();
|
|
$orderData['invoice_func'] = $invoice_func['invoice_func'];
|
|
$orderData['special_invoice'] = $invoice_func['special_invoice'];
|
|
$orderData['refund_cartInfo'] = $orderData['cartInfo'];
|
|
$orderData['refund_total_num'] = $orderData['total_num'];
|
|
$orderData['refund_pay_price'] = $orderData['pay_price'];
|
|
$orderData['is_apply_refund'] = true;
|
|
$orderData['help_info'] = [
|
|
'pay_uid' => $orderData['pay_uid'],
|
|
'pay_nickname' => '',
|
|
'pay_avatar' => '',
|
|
'help_status' => 0
|
|
];
|
|
if ($orderData['uid'] != $orderData['pay_uid']) {
|
|
/** @var UserServices $userServices */
|
|
$userServices = app()->make(UserServices::class);
|
|
$payUser = $userServices->get($orderData['pay_uid'], ['nickname', 'avatar']);
|
|
$orderData['help_info'] = [
|
|
'pay_uid' => $orderData['pay_uid'],
|
|
'pay_nickname' => $payUser['nickname'],
|
|
'pay_avatar' => $payUser['avatar'],
|
|
'help_status' => 1
|
|
];
|
|
}
|
|
// 判断是否开启小程序订单管理
|
|
$orderData['order_shipping_open'] = false;
|
|
if (sys_config('order_shipping_open', 0) && MiniOrderService::isManaged() && $order['is_channel'] == 1 && $order['pay_type'] == 'weixin') {
|
|
// 判断是否存在子未收货子订单
|
|
if ($order['pid'] > 0) {
|
|
if ($this->checkSubOrderNotTake((int)$order['pid'], (int)$order['id'])) {
|
|
$orderData['order_shipping_open'] = true;
|
|
}
|
|
} else {
|
|
$orderData['order_shipping_open'] = true;
|
|
}
|
|
|
|
}
|
|
return $orderData;
|
|
}
|
|
|
|
/**
|
|
* 获取确认订单页面是否展示快递配送和到店自提
|
|
* @param $uid
|
|
* @param $cartIds
|
|
* @param $new
|
|
* @return array
|
|
* @throws \Psr\SimpleCache\InvalidArgumentException
|
|
*/
|
|
public function checkShipping($uid, $cartIds, $new)
|
|
{
|
|
if ($new) {
|
|
$cartIds = explode(',', $cartIds);
|
|
$cartInfo = [];
|
|
foreach ($cartIds as $key) {
|
|
$info = CacheService::get($key);
|
|
if ($info) {
|
|
$cartInfo[] = $info;
|
|
}
|
|
}
|
|
} else {
|
|
/** @var StoreCartServices $cartServices */
|
|
$cartServices = app()->make(StoreCartServices::class);
|
|
$cartInfo = $cartServices->getCartList(['uid' => $uid, 'status' => 1, 'id' => $cartIds], 0, 0, ['productInfo', 'attrInfo']);
|
|
}
|
|
if (!$cartInfo) {
|
|
throw new ApiException(100026);
|
|
}
|
|
$arr = [];
|
|
foreach ($cartInfo as $item) {
|
|
$arr[] = $item['productInfo']['logistics'];
|
|
}
|
|
$res = array_unique(explode(',', implode(',', $arr)));
|
|
if (count($res) == 2) {
|
|
return ['type' => 0];
|
|
} else {
|
|
if ($res[0] == 2 && sys_config('store_self_mention') == 0) {
|
|
return ['type' => 1];
|
|
}
|
|
return ['type' => (int)$res[0]];
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 自动评价
|
|
* @return bool
|
|
*/
|
|
public function autoComment()
|
|
{
|
|
//自动评价天数
|
|
$systemCommentTime = sys_config('system_comment_time', 0);
|
|
//0为取消自动默认好评功能
|
|
if ($systemCommentTime == 0) {
|
|
return true;
|
|
}
|
|
$sevenDay = bcsub((string)time(), bcmul((string)$systemCommentTime, '86400'));
|
|
/** @var StoreOrderStoreOrderStatusServices $service */
|
|
$service = app()->make(StoreOrderStoreOrderStatusServices::class);
|
|
$orderList = $service->getTakeOrderIds([
|
|
'change_time' => $sevenDay,
|
|
'is_del' => 0,
|
|
'paid' => 1,
|
|
'status' => 2,
|
|
'change_type' => ['take_delivery', 'user_take_delivery']
|
|
], 30);
|
|
foreach ($orderList as $item) {
|
|
AutoCommentJob::dispatch([$item['id'], $item['cart_id']]);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* @param int $uid
|
|
* @param string $orderId
|
|
* @param string $type
|
|
* @return array
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @author 等风来
|
|
* @email 136327134@qq.com
|
|
* @date 2023/2/13
|
|
*/
|
|
public function getCashierInfo(int $uid, string $orderId, string $type)
|
|
{
|
|
//支付类型开关
|
|
$data = [
|
|
'ali_pay_status' => sys_config('ali_pay_status', '0') != '0',
|
|
'wechat_pay_status' => sys_config('pay_weixin_open', '0') != '0',
|
|
'offline_pay_status' => (int)sys_config('offline_pay_status') == 1,
|
|
'friend_pay_status' => (int)sys_config('friend_pay_status') == 1,
|
|
'yue_pay_status' => (int)sys_config('balance_func_status') && (int)sys_config('yue_pay_status') == 1,
|
|
];
|
|
|
|
$data['order_id'] = $orderId;
|
|
$data['pay_price'] = '0';
|
|
$data['now_money'] = app()->make(UserServices::class)->value(['uid' => $uid], 'now_money');
|
|
|
|
switch ($type) {
|
|
case 'order':
|
|
$info = $this->dao->get(['order_id' => $orderId], ['pay_price', 'add_time', 'combination_id', 'seckill_id', 'bargain_id', 'pay_postage']);
|
|
if (!$info) {
|
|
throw new PayException('您支付的订单不存在');
|
|
}
|
|
$orderCancelTime = sys_config('order_cancel_time', 0);
|
|
$orderActivityTime = sys_config('order_activity_time', 0);
|
|
if ($info->combination_id) {
|
|
$time = (sys_config('order_pink_time', 0) ?: $orderActivityTime) * 60 * 60 + ((int)$info->add_time);
|
|
} else if ($info->seckill_id) {
|
|
$time = (sys_config('order_seckill_time', 0) ?: $orderActivityTime) * 60 * 60 + ((int)$info->add_time);
|
|
} else if ($info->bargain_id) {
|
|
$time = (sys_config('order_bargain_time', 0) ?: $orderActivityTime) * 60 * 60 + ((int)$info->add_time);
|
|
} else {
|
|
$time = $orderCancelTime * 60 * 60 + ((int)$info->add_time);
|
|
}
|
|
|
|
if ($time < 0) {
|
|
$time = 0;
|
|
}
|
|
|
|
$data['pay_price'] = $info['pay_price'];
|
|
$data['pay_postage'] = $info['pay_postage'];
|
|
$data['offline_postage'] = (int)sys_config('offline_postage', 0);
|
|
$data['invalid_time'] = $time;
|
|
|
|
break;
|
|
case 'svip':
|
|
$info = app()->make(OtherOrderServices::class)->get(['order_id' => $orderId], ['pay_price', 'add_time']);
|
|
if (!$info) {
|
|
throw new PayException('您支付的订单不存在');
|
|
}
|
|
$data['pay_price'] = $info['pay_price'];
|
|
$data['invalid_time'] = $info->add_time + 86400;
|
|
break;
|
|
case 'recharge':
|
|
$info = app()->make(UserRechargeServices::class)->get(['order_id' => $orderId], ['price', 'add_time']);
|
|
if (!$info) {
|
|
throw new PayException('您支付的订单不存在');
|
|
}
|
|
$data['pay_price'] = $info['price'];
|
|
$data['invalid_time'] = $info->add_time + 86400;
|
|
break;
|
|
default:
|
|
throw new PayException('暂不支持其他类型订单支付');
|
|
}
|
|
|
|
return $data;
|
|
}
|
|
|
|
/**
|
|
* 取消商家寄件
|
|
* @param int $id
|
|
* @param string $msg
|
|
* @return array|mixed
|
|
* @throws \think\db\exception\DataNotFoundException
|
|
* @throws \think\db\exception\DbException
|
|
* @throws \think\db\exception\ModelNotFoundException
|
|
* @author 等风来
|
|
* @email 136327134@qq.com
|
|
* @date 2023/5/15
|
|
*/
|
|
public function shipmentCancelOrder(int $id, string $msg)
|
|
{
|
|
$orderInfo = $this->dao->get($id);
|
|
if (!$orderInfo) {
|
|
throw new ValidateException('取消的订单不存在');
|
|
}
|
|
if (!$orderInfo->kuaidi_task_id || !$orderInfo->kuaidi_order_id) {
|
|
throw new ValidateException('商家寄件订单信息不存在,无法取消');
|
|
}
|
|
if ($orderInfo->is_stock_up != 1) {
|
|
throw new ValidateException('订单状态不正确,无法取消寄件');
|
|
}
|
|
|
|
//发起取消商家寄件
|
|
app()->make(ServeServices::class)->express()->shipmentCancelOrder([
|
|
'task_id' => $orderInfo->kuaidi_task_id,
|
|
'order_id' => $orderInfo->kuaidi_order_id,
|
|
'cancel_msg' => $msg,
|
|
]);
|
|
|
|
//订单返回原状态
|
|
$this->transaction(function () use ($id, $msg, $orderInfo) {
|
|
app()->make(StoreOrderStatusServices::class)->save([
|
|
'oid' => $id,
|
|
'change_time' => time(),
|
|
'change_type' => 'delivery_goods_cancel',
|
|
'change_message' => '已取消发货,取消原因:' . $msg
|
|
]);
|
|
|
|
$orderInfo->status = 0;
|
|
$orderInfo->is_stock_up = 0;
|
|
$orderInfo->kuaidi_task_id = '';
|
|
$orderInfo->kuaidi_order_id = '';
|
|
$orderInfo->express_dump = '';
|
|
$orderInfo->kuaidi_label = '';
|
|
$orderInfo->delivery_id = '';
|
|
$orderInfo->delivery_code = '';
|
|
$orderInfo->delivery_name = '';
|
|
$orderInfo->delivery_type = '';
|
|
$orderInfo->save();
|
|
});
|
|
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* 判断订单是否全部发货
|
|
* @param int $pid
|
|
* @param int $order_id
|
|
* @return bool
|
|
* @author: 吴汐
|
|
* @email: 442384644@qq.com
|
|
* @date: 2023/8/31
|
|
*/
|
|
public function checkSubOrderNotSend(int $pid, int $order_id)
|
|
{
|
|
$order_count = $this->dao->getSubOrderNotSend($pid, $order_id);
|
|
if ($order_count > 0) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 判断是否存在子未收货子订单
|
|
* @param int $pid
|
|
* @param int $order_id
|
|
* @return bool
|
|
* @author: 吴汐
|
|
* @email: 442384644@qq.com
|
|
* @date: 2023/8/31
|
|
*/
|
|
public function checkSubOrderNotTake(int $pid, int $order_id)
|
|
{
|
|
$order_count = $this->dao->getSubOrderNotTake($pid, $order_id);
|
|
if ($order_count > 0) {
|
|
return false;
|
|
} else {
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
|