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.
 
 
 
 
 
 
zhishifufei_php/application/admin/model/order/StoreOrder.php

1187 lines
54 KiB

<?php
// +----------------------------------------------------------------------
// | 天诚科技 [ 刘海东 17600099397赋能开发者,助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2020 https://www.tczxkj.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed 该系统并不是自由软件,未经许可不能去掉相关版权
// +----------------------------------------------------------------------
// | Author:甘肃天诚志信电子商务有限公司 刘海东 联系电话维系17600099397
// +----------------------------------------------------------------------
namespace app\admin\model\order;
use app\admin\model\user\User;
use app\admin\model\user\UserBill;
use app\admin\model\wechat\WechatUser;
use app\admin\model\ump\StorePink;
use app\admin\model\store\StoreProduct;
use app\wap\model\store\StoreCart;
use traits\ModelTrait;
use basic\ModelBasic;
use service\WechatTemplateService;
use think\Url;
use think\Db;
use service\HookService;
use EasyWeChat\Core\Exception;
use service\SystemConfigService;
use app\wap\model\routine\RoutineTemplate;
use behavior\wap\StoreProductBehavior;
use service\PhpSpreadsheetService;
use app\admin\model\order\StoreOrderCartInfo;
/**
* 订单管理Model
* Class StoreOrder
* @package app\admin\model\order
*/
class StoreOrder extends ModelBasic
{
use ModelTrait;
public function orderCartInfo()
{
return $this->hasOne(StoreOrderCartInfo::class, "oid", "id");
}
public static function getOrderList($where)
{
$model = UserBill::where('u.uid', $where['uid'])->alias('u')->join('__STORE_ORDER__ a', 'a.id=u.link_id')
->where('u.category', 'now_money')->where('u.type', 'brokerage')
->where(['a.paid' => 1, 'a.is_gift' => 0, 'a.is_receive_gift' => 0])->order('a.add_time desc')->field('a.*');
if ($where['start_date'] && $where['end_date']) $model = $model->where('a.add_time', 'between', [strtotime($where['start_date']), strtotime($where['end_date'])]);
if ($where['excel']) {
$list = $model->select();
$excel = [];
foreach ($list as $item) {
$item['title'] = self::get_title($item);
$item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
$item['nickname'] = self::getDb('user')->where('uid', $item['uid'])->value('nickname');
$excel[] = [$item['add_time'], $item['order_id'], $item['nickname'], $item['title'], $item['pay_price']];
}
$filename = '直推订单导出' . time() . '.xlsx';
$head = ['时间', '订单号', '用户名', '名称', '订单金额'];
PhpSpreadsheetService::outdata($filename, $excel, $head);
} else
$list = $model->page((int)$where['page'], (int)$where['limit'])->select();
$list = count($list) > 0 ? $list->toArray() : [];
foreach ($list as &$item) {
$item['title'] = self::get_title($item);
$item['add_time'] = date('Y-m-d H:i:s', $item['add_time']);
$item['nickname'] = self::getDb('user')->where('uid', $item['uid'])->value('nickname');
}
return $list;
}
public static function get_title($item)
{
switch ($item['type']) {
case 0:
return self::getDb('special')->where('id', $item['cart_id'])->value('title');
break;
case 1:
return self::getDb('member_ship')->where('id', $item['member_id'])->value('title');
break;
case 2:
$product_id = self::getDb('store_order_cart_info')->where('oid', $item['id'])->value('product_id');
return self::getDb('store_product')->where('id', $product_id)->value('store_name');
break;
}
}
public static function orderCount($type = 0)
{
$data['wz'] = self::statusByWhere(0, new self(), '', $type)->count();
$data['wf'] = self::statusByWhere(1, new self(), '', $type)->count();
$data['sh'] = self::statusByWhere(2, new self(), '', $type)->count();
$data['pj'] = self::statusByWhere(3, new self(), '', $type)->count();
$data['wc'] = self::statusByWhere(4, new self(), '', $type)->count();
$data['pt'] = self::statusByWhere(5, new self(), '', $type)->count();
$data['pu'] = self::statusByWhere(6, new self(), '', $type)->count();
$data['lw'] = self::statusByWhere(7, new self(), '', $type)->count();
$data['sp'] = self::statusByWhere(8, new self(), '', $type)->count();
$data['vip'] = self::statusByWhere(9, new self(), '', $type)->count();
$data['tk'] = self::statusByWhere(-1, new self(), '', $type)->count();
$data['yt'] = self::statusByWhere(-2, new self(), '', $type)->count();
return $data;
}
public static function OrderList($where)
{
$model = self::getOrderWhere($where, self::alias('a')->join('User r', 'r.uid=a.uid', 'LEFT'), 'a.', 'r')->field('a.*,r.nickname,r.phone');
if ($where['order'] != '') {
$model = $model->order(self::setOrder($where['order']));
} else {
$model = $model->order('a.id desc');
}
if (isset($where['mer_id']) && $where['mer_id']) $model->where('mer_id', $where['mer_id']);
if (isset($where['excel']) && $where['excel'] == 1) {
$data = ($data = $model->select()) && count($data) ? $data->toArray() : [];
} else {
$data = ($data = $model->page((int)$where['page'], (int)$where['limit'])->select()) && count($data) ? $data->toArray() : [];
}
foreach ($data as &$item) {
switch ($item['type']) {
case 0:
$item['_info'] = db('special')->where('id', $item['cart_id'])->find();
if ($item['pink_id']) {
$item['pink_name'] = '[拼团订单]';
$item['color'] = '#895612';
} else if ($item['is_gift'] && !$item['pink_id']) {
$item['pink_name'] = '[送礼物订单]';
$item['color'] = '#895612';
} else if (!$item['is_gift'] && !$item['pink_id'] && $item['gift_order_id']) {
$item['pink_name'] = '[领礼物订单]';
$item['color'] = '#895612';
} else {
$item['pink_name'] = '[普通订单]';
$item['color'] = '#895612';
}
if (!$item['_info']) {
$item['_info']['title'] = '专题被删除';
} else {
$len = strlen($item['_info']['title']);
$item['_info']['title'] = $len > 16 ? mb_substr($item['_info']['title'], 0, 16) . '...' : $item['_info']['title'];
}
break;
case 1:
$item['_info'] = db('member_ship')->where('id', $item['member_id'])->find();
$item['pink_name'] = '[会员订单]';
$item['color'] = '#895612';
if (!$item['_info']) $item['_info']['title'] = '会员被删除';
break;
case 2:
$_info = Db::name('store_order_cart_info')->where('oid', $item['id'])->field('cart_info')->select();
foreach ($_info as $k => &$v) {
$cart_info = json_decode($v['cart_info'], true);
if (!isset($cart_info['productInfo'])) $cart_info['productInfo'] = [];
$len = strlen($cart_info['productInfo']['store_name']);
$cart_info['productInfo']['store_name'] = $len > 30 ? mb_substr($cart_info['productInfo']['store_name'], 0, 30) . '...' : $cart_info['productInfo']['store_name'];
$v['cart_info'] = $cart_info;
unset($cart_info);
}
$item['_info'] = $_info;
$item['pink_name'] = '[商品订单]';
$item['color'] = '#895612';
break;
}
if ($item['paid'] == 1) {
switch ($item['pay_type']) {
case 'weixin':
$item['pay_type_name'] = '微信支付';
break;
case 'yue':
$item['pay_type_name'] = '余额支付';
break;
case 'offline':
$item['pay_type_name'] = '线下支付';
break;
case 'zhifubao':
$item['pay_type_name'] = '支付宝支付';
break;
case 'toutiao':
$item['pay_type_name'] = '抖音支付';
break;
case 'kuaishou':
$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;
}
}
if ($item['paid'] == 0 && $item['status'] == 0) {
$item['status_name'] = '未支付';
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['refund_status'] == 0 && $item['type'] != 2) {
$item['status_name'] = '已支付';
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '待发货';
} else if ($item['paid'] == 1 && $item['status'] == 1 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '待收货';
} else if ($item['paid'] == 1 && $item['status'] == 2 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '待评价';
} else if ($item['paid'] == 1 && $item['status'] == 3 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '已完成';
} else if ($item['paid'] == 1 && $item['refund_status'] == 1) {
$item['status_name'] = <<<HTML
<b style="color:#f124c7">申请退款</b><br/>
HTML;
} else if ($item['paid'] == 1 && $item['refund_status'] == 2) {
$item['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['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;
}
$item['spread_name'] = '';
$item['spread_name_two'] = '';
if ($item['type'] == 0 || $item['type'] == 1) {
if ($item['link_pay_uid']) {
$spread_name = User::where('uid', $item['link_pay_uid'])->value('nickname');
$item['spread_name'] = $spread_name ? $spread_name . '/' . $item['link_pay_uid'] : '无';
$spread_uid_two = User::where('uid', $item['link_pay_uid'])->value('spread_uid');
if ($spread_uid_two) {
$spread_name_two = User::where('uid', $spread_uid_two)->value('nickname');
$item['spread_name_two'] = $spread_name_two ? $spread_name_two . '/' . $spread_uid_two : '无';
} else {
$item['spread_name_two'] = '无';
}
} else if ($item['spread_uid']) {
$spread_name = User::where('uid', $item['spread_uid'])->value('nickname');
$item['spread_name'] = $spread_name ? $spread_name . '/' . $item['spread_uid'] : '无';
$spread_uid_two = User::where('uid', $item['spread_uid'])->value('spread_uid');
if ($spread_uid_two) {
$spread_name_two = User::where('uid', $spread_uid_two)->value('nickname');
$item['spread_name_two'] = $spread_name_two ? $spread_name_two . '/' . $spread_uid_two : '无';
} else {
$item['spread_name_two'] = '无';
}
} else {
$item['spread_name'] = '无';
$item['spread_name_two'] = '无';
}
} else {
$item['spread_name'] = '不参与分销';
$item['spread_name_two'] = '不参与分销';
}
}
if (isset($where['excel']) && $where['excel'] == 1) {
self::SaveExcel($data, $where['types']);
}
$count = self::getOrderWhere($where, self::alias('a')->join('user r', 'r.uid=a.uid', 'LEFT'), 'a.', 'r')->count();
return compact('count', 'data');
}
/*
* 保存并下载excel
* $list array
* return
*/
public static function SaveExcel($list, $type)
{
$export = [];
foreach ($list as $index => $item) {
if ($item['paid'] == 0 && $item['status'] == 0) {
$item['status_name'] = '未支付';
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['refund_status'] == 0 && $item['type'] != 2) {
$item['status_name'] = '已支付';
} else if ($item['paid'] == 1 && $item['status'] == 0 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '待发货';
} else if ($item['paid'] == 1 && $item['status'] == 1 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '待收货';
} else if ($item['paid'] == 1 && $item['status'] == 2 && $item['refund_status'] == 0 && $item['type'] == 2) {
$item['status_name'] = '已完成';
} else if ($item['paid'] == 1 && $item['refund_status'] == 1) {
$item['status_name'] = '退款中';
} else if ($item['paid'] == 1 && $item['refund_status'] == 2) {
$item['status_name'] = '已退款';
}
if ($type == 0) {
$special = self::getDb('special')->where('id', $item['cart_id'])->field('title,money')->find();
if ($special) {
$goodsName = $special['title'] . '| ' . $special['money'];
} else {
$goodsName = '专题被删除';
}
$export[] = [
$item['order_id'], $item['pay_type_name'],
$item['total_num'], $item['total_price'], $item['pay_price'], $item['refund_price'],
$goodsName,
$item['spread_name'],
$item['spread_name_two'],
$item['paid'] == 1 ? '已支付' : '未支付' . '/支付时间: ' . ($item['pay_time'] > 0 ? date('Y/m/d H:i', $item['pay_time']) : '暂无'),
$item['status_name'],
$item['nickname'] . '/' . $item['uid'],
$item['phone']
];
} else if ($type == 2) {
$_info = Db::name('store_order_cart_info')->where('oid', $item['id'])->column('cart_info');
$goodsName = [];
foreach ($_info as $k => $v) {
$v = json_decode($v, true);
$goodsName = implode(
[
$v['productInfo']['store_name'],
isset($v['productInfo']['attrInfo']) ? '(' . $v['productInfo']['attrInfo']['suk'] . ')' : '',
"[{$v['cart_num']} * {$v['truePrice']}]"
],
' '
);
}
$item['cartInfo'] = $_info;
$export[] = [
$item['order_id'], $item['pay_type_name'],
$item['total_num'], $item['total_price'], $item['total_postage'], $item['pay_price'], $item['refund_price'],
$goodsName,
$item['spread_name'],
$item['spread_name_two'],
$item['paid'] == 1 ? '已支付' : '未支付' . '/支付时间: ' . ($item['pay_time'] > 0 ? date('Y/m/d H:i', $item['pay_time']) : '暂无'),
$item['status_name'],
$item['nickname'] . '/' . $item['uid'],
'收货人:' . $item['real_name'],
'联系电话:' . $item['user_phone'],
'收货地址:' . $item['user_address']
];
} else if ($type == 1) {
$_info = db('member_ship')->where('id', $item['member_id'])->find();
if ($_info) {
$goodsName = $_info['title'] . '会员| ' . $_info['price'];
} else {
$goodsName = '会员信息被删除';
}
$export[] = [
$item['order_id'], $item['pay_type_name'],
$item['total_price'], $item['pay_price'], $item['refund_price'],
$goodsName,
$item['spread_name'],
$item['spread_name_two'],
$item['paid'] == 1 ? '已支付' : '未支付' . '/支付时间: ' . ($item['pay_time'] > 0 ? date('Y/m/d H:i', $item['pay_time']) : '暂无'),
$item['status_name'],
$item['nickname'] . '/' . $item['uid'],
$item['phone']
];
}
}
switch ($type) {
case 0:
$filename = '专题课程订单导出' . time() . '.xlsx';
$head = ['订单号', '支付方式', '专题总数', '专题总价', '支付金额', '退款金额', '专题信息', '推广人', '推广人上级', '支付状态', '订单状态', '微信昵称/UID', '手机号'];
break;
case 1:
$filename = '会员订单导出' . time() . '.xlsx';
$head = ['订单号', '支付方式', '会员总价', '支付金额', '退款金额', '会员信息', '推广人', '推广人上级', '支付状态', '订单状态', '微信昵称/UID', '手机号'];
break;
case 2:
$filename = '商品订单导出' . time() . '.xlsx';
$head = ['订单号', '支付方式', '商品总数', '商品总价', '邮费', '支付金额', '退款金额', '商品信息', '推广人', '推广人上级', '支付状态', '订单状态', '收货人', '联系电话', '收货地址'];
break;
}
PhpSpreadsheetService::outdata($filename, $export, $head);
}
public static function statusByWhere($status, $model = null, $alert = '', $type = 0)
{
if ($model == null) $model = new self;
switch ($type) {
case 0:
$model = $model->where($alert . 'type', 0);
break;
case 1:
$model = $model->where($alert . 'type', 1);
break;
case 2:
$model = $model->where($alert . 'type', 2);
break;
}
if ('' === $status)
return $model;
else if ($status == 0) //未支付
return $model->where($alert . 'paid', 0)->where($alert . 'is_system_del', 0)->where($alert . 'status', 0)->where($alert . 'refund_status', 0);
else if ($status == 1) //已支付 待发货
return $model->where($alert . 'paid', 1)->where($alert . 'is_system_del', 0)->where($alert . 'status', 0)->where($alert . 'refund_status', 0);
else if ($status == 2) //已支付 待收货
return $model->where($alert . 'paid', 1)->where($alert . 'is_system_del', 0)->where($alert . 'status', 1)->where($alert . 'refund_status', 0);
else if ($status == 3) //已支付 待评价
return $model->where($alert . 'paid', 1)->where($alert . 'is_system_del', 0)->where($alert . 'status', 2)->where($alert . 'refund_status', 0);
else if ($status == 4) //已支付 已完成
return $model->where($alert . 'paid', 1)->where($alert . 'is_system_del', 0)->where($alert . 'status', 3)->where($alert . 'refund_status', 0);
else if ($status == 5) //课程订单
return $model->where($alert . 'combination_id', 0)->where($alert . 'is_system_del', 0)->where($alert . 'is_gift', 0);
else if ($status == 6) // 拼团订单
return $model->where($alert . 'combination_id', '>', 0)->where($alert . 'is_system_del', 0)->where($alert . 'is_gift', 0);
else if ($status == 7) // 礼物订单
return $model->where($alert . 'combination_id', 0)->where($alert . 'is_system_del', 0)->where($alert . 'is_gift', '>', 0);
else if ($status == 8) //商品订单
return $model->where($alert . 'combination_id', 0)->where($alert . 'is_system_del', 0)->where($alert . 'is_gift', 0);
else if ($status == 9) //会员订单
return $model->where($alert . 'combination_id', 0)->where($alert . 'is_system_del', 0)->where($alert . 'is_gift', 0);
else if ($status == -1) //退款中
return $model->where($alert . 'paid', 1)->where($alert . 'is_system_del', 0)->where($alert . 'refund_status', 1);
else if ($status == -2) //已退款
return $model->where($alert . 'paid', 1)->where($alert . 'is_system_del', 0)->where($alert . 'refund_status', 2);
else
return $model;
}
/**退金币
* @param $data
* @param $oid
*/
public static function returnGoldCoin($oid)
{
$gold_name = SystemConfigService::get('gold_name'); //虚拟币名称
$order = self::where('id', $oid)->field('id,order_id,gain_gold_num,uid,type')->find();
if ($order['type'] != 2) return true;
if ($order['gain_gold_num'] <= 0) return true;
$uill = UserBill::where(['link_id' => $order['id'], 'pm' => 1, 'category' => 'gold_num', 'type' => 'gain'])->find();
if (!$uill) return true;
$userInfo = User::where('uid', $order['uid'])->find();
if (bcsub($userInfo['gold_num'], $order['gain_gold_num'], 2) > 0) {
$gold_num = bcsub($userInfo['gold_num'], $order['gain_gold_num'], 2);
} else {
$gold_num = 0;
}
$res1 = User::where('uid', $order['uid'])->update(['gold_num' => $gold_num]);
$res2 = UserBill::expend($gold_name . '返还', $order['uid'], 'gold_num', 'return', $order['gain_gold_num'], $order['id'], $gold_num, '用户退款返还' . floatval($order['gain_gold_num']) . $gold_name);
$res = $res1 && $res2;
return $res;
}
/**退佣金 一级
* @param $data
* @param $oid
*/
public static function returnCommissionOne($oid)
{
$order = self::where('id', $oid)->find();
$userInfo = User::where('uid', $order['uid'])->find();
if (!$userInfo || !$userInfo['spread_uid']) return true;
$storeBrokerageStatu = SystemConfigService::get('store_brokerage_statu') ?: 1; //获取后台分销类型
if ($storeBrokerageStatu == 1) {
if (!User::be(['uid' => $userInfo['spread_uid'], 'is_promoter' => 1])) return true;
}
$userInfoOne = User::where('uid', $userInfo['spread_uid'])->find();
$uill = UserBill::where(['link_id' => $order['id'], 'pm' => 1, 'uid' => $userInfoOne['uid'], 'category' => 'now_money', 'type' => 'brokerage'])->find();
if (!$uill) return true;
if (bcsub($userInfoOne['brokerage_price'], $uill['number'], 2) > 0) {
$brokerage_price = bcsub($userInfoOne['brokerage_price'], $uill['number'], 2);
} else {
$brokerage_price = 0;
}
$res1 = User::where('uid', $userInfoOne['uid'])->update(['brokerage_price' => $brokerage_price]);
$res2 = UserBill::expend('佣金返还', $userInfoOne['uid'], 'now_money', 'brokerage_return', $uill['number'], $order['id'], $brokerage_price, '用户退款返还佣金' . floatval($uill['number']) . '元');
$res = $res1 && $res2;
if ($res) {
return self::returnCommissionTwo($userInfoOne, $order);
}
}
/**退佣金 二级
* @param $data
* @param $oid
*/
public static function returnCommissionTwo($userInfoOne, $order)
{
if (!$userInfoOne || !$userInfoOne['spread_uid']) return true;
$storeBrokerageStatu = SystemConfigService::get('store_brokerage_statu') ?: 1; //获取后台分销类型
if ($storeBrokerageStatu == 1) {
if (!User::be(['uid' => $userInfoOne['spread_uid'], 'is_promoter' => 1])) return true;
}
$userInfoTwo = User::where('uid', $userInfoOne['spread_uid'])->find();
$uill = UserBill::where(['link_id' => $order['id'], 'pm' => 1, 'uid' => $userInfoTwo['uid'], 'category' => 'now_money', 'type' => 'brokerage'])->find();
if (!$uill) return true;
if (bcsub($userInfoTwo['brokerage_price'], $uill['number'], 2) > 0) {
$brokerage_price = bcsub($userInfoTwo['brokerage_price'], $uill['number'], 2);
} else {
$brokerage_price = 0;
}
$res1 = User::where('uid', $userInfoTwo['uid'])->update(['brokerage_price' => $brokerage_price]);
$res2 = UserBill::expend('佣金返还', $userInfoTwo['uid'], 'now_money', 'brokerage_return', $uill['number'], $order['id'], $brokerage_price, '用户退款返还佣金' . floatval($uill['number']) . '元');
$res = $res1 && $res2;
return $res;
}
public static function timeQuantumWhere($startTime = null, $endTime = null, $model = null)
{
if ($model === null) $model = new self;
if ($startTime != null && $endTime != null)
$model = $model->where('add_time', '>', strtotime($startTime))->where('add_time', '<', strtotime($endTime));
return $model;
}
public static function changeOrderId($orderId)
{
$ymd = substr($orderId, 2, 8);
$key = substr($orderId, 16);
return 'wx' . $ymd . date('His') . $key;
}
/**
* 线下付款
* @param $id
* @return $this
*/
public static function updateOffline($id)
{
$orderId = self::where('id', $id)->value('order_id');
$res = self::where('order_id', $orderId)->update(['paid' => 1, 'pay_time' => time()]);
return $res;
}
/**
* 退款发送模板消息
* @param $oid
* $oid 订单id key
*/
public static function refundTemplate($data, $oid)
{
$order = self::where('id', $oid)->find();
$wechat_notification_message = SystemConfigService::get('wechat_notification_message');
if ($wechat_notification_message == 1) {
WechatTemplateService::sendTemplate(WechatUser::uidToOpenid($order['uid']), WechatTemplateService::ORDER_REFUND_STATUS, [
'first' => '亲,您的订单已退款,本次退款' . $data['refund_price'] . '金额',
'keyword1' => $order['order_id'],
'keyword2' => $data['refund_price'],
'keyword3' => date('Y-m-d H:i:s', $order['add_time']),
'remark' => '请查看账单'
], '');
} else {
$dataAdmin['character_string7']['value'] = $order['order_id'];
$dataAdmin['time8']['value'] = date('Y-m-d H:i:s', $order['add_time']);
$dataAdmin['amount3']['value'] = $data['refund_price'];
RoutineTemplate::sendOrderRefundSuccess($dataAdmin, $order['uid'], Url::build('wap/special/order', ['uni' => $order['order_id']], true, true));
}
}
/**
* 处理where条件
* @param $where
* @param $model
* @return mixed
*/
public static function getOrderWhere($where, $model, $aler = '', $join = '')
{
if ($where['status'] != '') {
$model = self::statusByWhere($where['status'], $model, $aler, $where['types']);
} else {
$model = $model->where($aler . 'is_system_del', 0);
}
if (array_key_exists('uid', $where) && $where['uid'] != '') {
$model = $model->where($aler . 'uid', $where['uid']);
}
if ($where['real_name'] != '') {
$model = $model->where($aler . 'order_id|' . $aler . 'real_name|' . $aler . 'user_phone' . ($join ? '|' . $join . '.nickname|' . $join . '.uid|' . $join . '.phone' : ''), 'LIKE', "%$where[real_name]%");
}
$model = $model->where($aler . 'type', $where['types']);
if ($where['type'] != '') {
switch ($where['type']) {
case 5:
$model = $model->where($aler . 'combination_id', 0)->where($aler . 'is_gift', 0);
break;
case 6:
$model = $model->where($aler . 'combination_id', '>', 0)->where($aler . 'is_gift', 0);
break;
case 7:
$model = $model->where($aler . 'combination_id', 0)->where($aler . 'is_gift', '>', 0);
break;
case 8:
$model = $model->where($aler . 'combination_id', 0)->where($aler . 'is_gift', 0);
break;
case 9:
$model = $model->where($aler . 'combination_id', 0)->where($aler . 'is_gift', 0);
break;
}
}
if ($where['data'] !== '') {
$model = self::getModelTime($where, $model, $aler . 'add_time');
}
return $model;
}
public static function getBadge($where)
{
$price = self::getOrderPrice($where);
switch ($where['types']) {
case 0:
$name = '售出专题';
break;
case 1:
$name = '售出会员';
break;
case 2:
$name = '售出商品';
break;
}
return [
[
'name' => '订单数量',
'field' => '件',
'count' => $price['order_sum'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => $name,
'field' => '件',
'count' => $price['total_num'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '订单金额',
'field' => '元',
'count' => $price['pay_price'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '退款金额',
'field' => '元',
'count' => $price['refund_price'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '微信支付金额',
'field' => '元',
'count' => $price['pay_price_wx'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '余额支付金额',
'field' => '元',
'count' => $price['pay_price_yue'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '支付宝支付金额',
'field' => '元',
'count' => $price['pay_price_zhifubao'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '抖音支付金额',
'field' => '元',
'count' => $price['pay_price_toutiao'],
'background_color' => 'layui-bg-blue',
'col' => 3
],
[
'name' => '快手支付金额',
'field' => '元',
'count' => $price['pay_price_kuaishou'],
'background_color' => 'layui-bg-blue',
'col' => 3
]
];
}
/**
* 处理订单金额
* @param $where
* @return array
*/
public static function getOrderPrice($where)
{
$price = array();
$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_zhifubao'] = 0; //支付宝支付金额
$price['pay_price_toutiao'] = 0; //抖音支付金额
$price['pay_price_kuaishou'] = 0; //快手支付金额
$price['pay_price_other'] = 0; //其他支付金额
$list = self::getOrderWhere($where, self::alias('a')->join('User r', 'r.uid=a.uid', 'LEFT'), 'a.', 'r')->field([
'sum(a.total_num) as total_num',
'sum(a.pay_price) as pay_price',
'sum(a.refund_price) as refund_price'
])->find()->toArray();
$price['total_num'] = $list['total_num']; //商品总数
$price['pay_price'] = $list['pay_price']; //支付金额
$price['refund_price'] = $list['refund_price']; //退款金额
$list = self::getOrderWhere($where, self::alias('a')->join('User r', 'r.uid=a.uid', 'LEFT'), 'a.', 'r')->field('sum(a.pay_price) as pay_price,a.pay_type')->group('a.pay_type')->select()->toArray();
foreach ($list as $v) {
if ($v['pay_type'] == 'weixin') {
$price['pay_price_wx'] = $v['pay_price'];
} elseif ($v['pay_type'] == 'yue') {
$price['pay_price_yue'] = $v['pay_price'];
} elseif ($v['pay_type'] == 'offline') {
$price['pay_price_offline'] = $v['pay_price'];
} elseif ($v['pay_type'] == 'zhifubao') {
$price['pay_price_zhifubao'] = $v['pay_price'];
}elseif ($v['pay_type'] == 'toutiao') {
$price['pay_price_toutiao'] = $v['pay_price'];
} elseif ($v['pay_type'] == 'kuaishou') {
$price['pay_price_toutiao'] = $v['pay_price'];
}
else {
$price['pay_price_other'] = $v['pay_price'];
}
}
$price['order_sum'] = self::getOrderWhere($where, self::alias('a')->join('User r', 'r.uid=a.uid', 'LEFT'), 'a.', 'r')->count();
return $price;
}
public static function systemPagePink($where)
{
$model = new self;
$model = self::getOrderWherePink($where, $model);
$model = $model->order('id desc');
if ($where['export'] == 1) {
$list = $model->select()->toArray();
$export = [];
foreach ($list as $index => $item) {
if ($item['pay_type'] == 'weixin') {
$payType = '微信支付';
} elseif ($item['pay_type'] == 'yue') {
$payType = '余额支付';
} elseif ($item['pay_type'] == 'offline') {
$payType = '线下支付';
} else {
$payType = '其他支付';
}
$_info = db('store_order_cart_info')->where('oid', $item['id'])->column('cart_info');
$goodsName = [];
foreach ($_info as $k => $v) {
$v = json_decode($v, true);
$goodsName[] = implode(
[
$v['productInfo']['store_name'],
isset($v['productInfo']['attrInfo']) ? '(' . $v['productInfo']['attrInfo']['suk'] . ')' : '',
"[{$v['cart_num']} * {$v['truePrice']}]"
],
' '
);
}
$item['cartInfo'] = $_info;
$export[] = [
$item['order_id'], $payType,
$item['total_num'], $item['total_price'], $item['total_postage'], $item['pay_price'], $item['refund_price'],
$item['mark'], $item['remark'],
$item['real_name'] . '/' . $item['user_phone'] . '/' . $item['user_address'],
$goodsName,
$item['paid'] == 1 ? '已支付' : '未支付' . '/支付时间: ' . ($item['pay_time'] > 0 ? date('Y/md H:i', $item['pay_time']) : '暂无')
];
$list[$index] = $item;
}
$filename = '订单导出' . time() . '.xlsx';
$head = ['订单号', '支付方式', '商品总数', '商品总价', '邮费', '支付金额', '退款金额', '用户备注', '管理员备注', '收货人信息', '商品信息', '支付状态'];
PhpSpreadsheetService::outdata($filename, $export, $head);
}
return self::page($model, function ($item) {
$item['nickname'] = WechatUser::where('uid', $item['uid'])->value('nickname');
$_info = db('store_order_cart_info')->where('oid', $item['id'])->field('cart_info')->select();
foreach ($_info as $k => $v) {
$_info[$k]['cart_info'] = json_decode($v['cart_info'], true);
}
$item['_info'] = $_info;
}, $where);
}
/**
* 处理where条件
* @param $where
* @param $model
* @return mixed
*/
public static function getOrderWherePink($where, $model)
{
if ($where['status'] != '') $model = self::statusByWhere($where['status']);
$model = $model->where('combination_id', 'GT', 0);
if ($where['real_name'] != '') {
$model = $model->where('order_id|real_name|user_phone', 'LIKE', "%$where[real_name]%");
}
if ($where['data'] !== '') {
list($startTime, $endTime) = explode(' - ', $where['data']);
$model = $model->where('add_time', '>', strtotime($startTime));
$model = $model->where('add_time', '<', strtotime($endTime));
}
return $model;
}
/**
* 处理订单金额
* @param $where
* @return array
*/
public static function getOrderPricePink($where)
{
$model = new self;
$price = array();
$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; //商品总数
$model = self::getOrderWherePink($where, $model);
$list = $model->select()->toArray();
foreach ($list as $v) {
$price['total_num'] = bcadd($price['total_num'], $v['total_num'], 0);
$price['pay_price'] = bcadd($price['pay_price'], $v['pay_price'], 2);
$price['refund_price'] = bcadd($price['refund_price'], $v['refund_price'], 2);
$price['use_integral'] = bcadd($price['use_integral'], $v['use_integral'], 2);
$price['back_integral'] = bcadd($price['back_integral'], $v['back_integral'], 2);
$price['deduction_price'] = bcadd($price['deduction_price'], $v['deduction_price'], 2);
if ($v['pay_type'] == 'weixin') {
$price['pay_price_wx'] = bcadd($price['pay_price_wx'], $v['pay_price'], 2);
} elseif ($v['pay_type'] == 'yue') {
$price['pay_price_yue'] = bcadd($price['pay_price_yue'], $v['pay_price'], 2);
} elseif ($v['pay_type'] == 'offline') {
$price['pay_price_offline'] = bcadd($price['pay_price_offline'], $v['pay_price'], 2);
} else {
$price['pay_price_other'] = bcadd($price['pay_price_other'], $v['pay_price'], 2);
}
}
return $price;
}
/**
* 获取昨天的订单 首页在使用
* @param int $preDay
* @param int $day
* @return $this|StoreOrder
*/
public static function isMainYesterdayCount($preDay = 0, $day = 0)
{
$model = new self();
$model = $model->where('add_time', 'gt', $preDay);
$model = $model->where('add_time', 'lt', $day);
return $model;
}
/**
* 获取用户购买次数
* @param int $uid
* @return int|string
*/
public static function getUserCountPay($uid = 0)
{
if (!$uid) return 0;
return self::where('uid', $uid)->where('paid', 1)->count();
}
/**
* 获取单个用户购买列表
* @param array $where
* @return array
*/
public static function getOneorderList($where)
{
return self::where(['uid' => $where['uid'], 'paid' => 1])
->order('add_time desc')
->page((int)$where['page'], (int)$where['limit'])
->field([
'order_id', 'total_num', 'total_price', 'pay_price',
'FROM_UNIXTIME(pay_time,"%Y-%m-%d") as pay_time', 'paid', 'pay_type',
'pink_id'
])->select()
->toArray();
}
/*
* 设置订单统计图搜索
* $where array 条件
* return object
*/
public static function setEchatWhere($where, $status = null, $time = null)
{
$model = self::statusByWhere($where['status']);
if ($status !== null) $where['type'] = $status;
if ($time === true) $where['data'] = '';
switch ($where['type']) {
case 1:
//普通商品
$model = $model->where('combination_id', 0)->where('seckill_id', 0);
break;
case 2:
//拼团商品
$model = $model->where('combination_id', ">", 0)->where('pink_id', ">", 0);
break;
case 3:
//秒杀商品
$model = $model->where('seckill_id', ">", 0);
break;
case 4:
//砍价商品
$model = $model->where('bargain_id', '>', 0);
break;
}
return self::getModelTime($where, $model);
}
/*
* 获取订单数据统计图
* $where array
* $limit int
* return array
*/
public static function getEchartsOrder($where, $limit = 20)
{
$orderlist = self::setEchatWhere($where)->field([
'FROM_UNIXTIME(add_time,"%Y-%m-%d") as _add_time',
'sum(total_num) total_num',
'count(*) count',
'sum(total_price) total_price',
'sum(refund_price) refund_price',
'group_concat(cart_id SEPARATOR "|") cart_ids'
])->group('_add_time')->order('_add_time asc')->select();
count($orderlist) && $orderlist = $orderlist->toArray();
$legend = ['商品数量', '订单数量', '订单金额', '退款金额'];
$seriesdata = [
[
'name' => $legend[0],
'type' => 'line',
'data' => [],
],
[
'name' => $legend[1],
'type' => 'line',
'data' => []
],
[
'name' => $legend[2],
'type' => 'line',
'data' => []
],
[
'name' => $legend[3],
'type' => 'line',
'data' => []
]
];
$xdata = [];
$zoom = '';
foreach ($orderlist as $item) {
$xdata[] = $item['_add_time'];
$seriesdata[0]['data'][] = $item['total_num'];
$seriesdata[1]['data'][] = $item['count'];
$seriesdata[2]['data'][] = $item['total_price'];
$seriesdata[3]['data'][] = $item['refund_price'];
}
count($xdata) > $limit && $zoom = $xdata[$limit - 5];
$badge = self::getOrderBadge($where);
$bingpaytype = self::setEchatWhere($where)->group('pay_type')->field(['count(*) as count', 'pay_type'])->select();
count($bingpaytype) && $bingpaytype = $bingpaytype->toArray();
$bing_xdata = ['微信支付', '余额支付', '其他支付'];
$color = ['#ffcccc', '#99cc00', '#fd99cc', '#669966'];
$bing_data = [];
foreach ($bingpaytype as $key => $item) {
if ($item['pay_type'] == 'weixin') {
$value['name'] = $bing_xdata[0];
} else if ($item['pay_type'] == 'yue') {
$value['name'] = $bing_xdata[1];
} else {
$value['name'] = $bing_xdata[2];
}
$value['value'] = $item['count'];
$value['itemStyle']['color'] = isset($color[$key]) ? $color[$key] : $color[0];
$bing_data[] = $value;
}
return compact('zoom', 'xdata', 'seriesdata', 'badge', 'legend', 'bing_data', 'bing_xdata');
}
public static function getOrderBadge($where)
{
return [
[
'name' => '拼团订单数量',
'field' => '个',
'count' => self::setEchatWhere($where, 2)->count(),
'content' => '拼团总订单数量',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, 2, true)->count(),
'class' => 'fa fa-line-chart',
'col' => 2
],
[
'name' => '砍价订单数量',
'field' => '个',
'count' => self::setEchatWhere($where, 4)->count(),
'content' => '砍价总订单数量',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, 4, true)->count(),
'class' => 'fa fa-line-chart',
'col' => 2
],
[
'name' => '秒杀订单数量',
'field' => '个',
'count' => self::setEchatWhere($where, 3)->count(),
'content' => '秒杀总订单数量',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, 3, true)->count(),
'class' => 'fa fa-line-chart',
'col' => 2
],
[
'name' => '普通订单数量',
'field' => '个',
'count' => self::setEchatWhere($where, 1)->count(),
'content' => '普通总订单数量',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, 1, true)->count(),
'class' => 'fa fa-line-chart',
'col' => 2,
],
[
'name' => '使用优惠卷金额',
'field' => '元',
'count' => self::setEchatWhere($where)->sum('coupon_price'),
'content' => '普通总订单数量',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->sum('coupon_price'),
'class' => 'fa fa-line-chart',
'col' => 2
],
[
'name' => '积分消耗数',
'field' => '个',
'count' => self::setEchatWhere($where)->sum('use_integral'),
'content' => '积分消耗总数',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->sum('use_integral'),
'class' => 'fa fa-line-chart',
'col' => 2
],
[
'name' => '积分抵扣金额',
'field' => '个',
'count' => self::setEchatWhere($where)->sum('deduction_price'),
'content' => '积分抵扣总金额',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->sum('deduction_price'),
'class' => 'fa fa-money',
'col' => 2
],
[
'name' => '在线支付金额',
'field' => '元',
'count' => self::setEchatWhere($where)->where('pay_type', 'weixin')->sum('pay_price'),
'content' => '在线支付总金额',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->where('pay_type', 'weixin')->sum('pay_price'),
'class' => 'fa fa-weixin',
'col' => 2
],
[
'name' => '余额支付金额',
'field' => '元',
'count' => self::setEchatWhere($where)->where('pay_type', 'yue')->sum('pay_price'),
'content' => '余额支付总金额',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->where('pay_type', 'yue')->sum('pay_price'),
'class' => 'fa fa-balance-scale',
'col' => 2
],
[
'name' => '赚取积分',
'field' => '分',
'count' => self::setEchatWhere($where)->sum('gain_integral'),
'content' => '赚取总积分',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->sum('gain_integral'),
'class' => 'fa fa-gg-circle',
'col' => 2
],
[
'name' => '交易额',
'field' => '元',
'count' => self::setEchatWhere($where)->sum('pay_price'),
'content' => '总交易额',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->sum('pay_price'),
'class' => 'fa fa-jpy',
'col' => 2
],
[
'name' => '订单商品数量',
'field' => '元',
'count' => self::setEchatWhere($where)->sum('total_num'),
'content' => '订单商品总数量',
'background_color' => 'layui-bg-cyan',
'sum' => self::setEchatWhere($where, null, true)->sum('total_num'),
'class' => 'fa fa-cube',
'col' => 2
]
];
}
/**
* 获取订单总数
* @param int $uid
* @return int|string
*/
public static function getOrderCount($uid = 0)
{
if (!$uid) return 0;
return self::where('uid', $uid)->where('paid', 1)->where('refund_status', 0)->where('status', 2)->count();
}
/**清除未支付商品订单归还库存
* @return bool
*/
public static function goodsOrderReturnInventory()
{
$order_clear_time = SystemConfigService::get('order_clear_time');
if ($order_clear_time <= 0 || $order_clear_time == '') return true;
$return_time = bcsub(time(), bcmul($order_clear_time, 3600, 0), 0);
$list = self::where(['type' => 2, 'paid' => 0, 'is_del' => 0, 'is_system_del' => 0])->where('add_time', '<=', $return_time)->select();
$list = count($list) > 0 ? $list->toArray() : [];
if (count($list) <= 0) return true;
foreach ($list as $key => $item) {
$res = self::where('id', $item['id'])->update(['is_del' => 1, 'is_system_del' => 1]);
if (!$res) continue;
$cart_id = Db::name('store_order_cart_info')->where('oid', $item['id'])->value('cart_id');
if (!$cart_id) continue;
$cart = StoreCart::where('id', $cart_id)->field('product_id,cart_num')->find();
if ($cart) {
$res1 = StoreProduct::where('id', $cart['product_id'])->setInc('stock', $cart['cart_num']);
if (!$res1) continue;
} else {
continue;
}
}
return true;
}
/**
* 系统自动收货
*/
public static function goodsAutomaticReceiving()
{
$automatic_receiving_time = SystemConfigService::get('automatic_receiving_time');
if ($automatic_receiving_time <= 0 || $automatic_receiving_time == '') return true;
$return_time = bcsub(time(), bcmul($automatic_receiving_time, 86400, 0), 0);
$list = self::where(['type' => 2, 'paid' => 1, 'is_del' => 0, 'status' => 1, 'refund_status' => 0, 'is_system_del' => 0])->where('add_time', '<=', $return_time)->select();
$list = count($list) > 0 ? $list->toArray() : [];
if (count($list) <= 0) return true;
foreach ($list as $key => $item) {
try {
$data['status'] = 2;
self::edit($data, $item['id']);
HookService::listen('store_product_order_take_delivery', $item, $item['id'], false, StoreProductBehavior::class);
} catch (Exception $e) {
continue;
}
StoreOrderStatus::setStatus($item['id'], 'system_take_delivery', '系统自动收货');
}
return true;
}
}