1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195 |
- <?php
- // +----------------------------------------------------------------------
- // | likeshop开源商城系统
- // +----------------------------------------------------------------------
- // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
- // | gitee下载:https://gitee.com/likeshop_gitee
- // | github下载:https://github.com/likeshop-github
- // | 访问官网:https://www.likeshop.cn
- // | 访问社区:https://home.likeshop.cn
- // | 访问手册:http://doc.likeshop.cn
- // | 微信公众号:likeshop技术社区
- // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
- // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
- // | 禁止对系统程序代码以任何目的,任何形式的再发布
- // | likeshop团队版权所有并拥有最终解释权
- // +----------------------------------------------------------------------
- // | author: likeshop.cn.team
- // +----------------------------------------------------------------------
-
-
- namespace app\shop\logic\order;
-
-
- use app\admin\logic\distribution\DistributionLevelLogic;
- use app\api\logic\PayLogic;
- use app\common\basics\Logic;
- use app\common\enum\NoticeEnum;
- use app\common\enum\OrderEnum;
- use app\common\enum\OrderLogEnum;
- use app\common\enum\PayEnum;
- use app\common\enum\TeamEnum;
- use app\common\enum\VerificationEnum;
- use app\common\logic\GoodsVirtualLogic;
- use app\common\logic\OrderLogLogic;
- use app\common\logic\OrderRefundLogic;
- use app\common\logic\PayNotifyLogic;
- use app\common\model\Delivery;
- use app\common\model\Express;
- use app\common\model\goods\Goods;
- use app\common\model\order\Order;
- use app\common\model\DevRegion;
- use app\common\model\order\OrderGoods;
- use app\common\model\printer\Printer;
- use app\common\model\printer\PrinterConfig;
- use app\common\model\team\Team;
- use app\common\model\team\TeamFound;
- use app\common\model\team\TeamJoin;
- use app\common\model\user\User;
- use app\common\model\user\UserLevel;
- use app\common\model\order\Verification;
- use app\common\server\ConfigServer;
- use app\common\server\ExportExcelServer;
- use app\common\server\UrlServer;
- use app\common\server\YlyPrinter;
- use app\shop\logic\printer\PrinterLogic;
- use think\facade\Cache;
- use expressage\Kd100;
- use expressage\Kdniao;
- use think\facade\Db;
- use think\Exception;
- use think\facade\Validate;
- use think\Model;
-
-
- /**
- * 订单管理-逻辑
- * Class GoodsLogic
- * @package app\shop\logic\goods
- */
- class OrderLogic extends Logic
- {
- /**
- * @notes 订单统计
- * @param array $get
- * @param int $shop_id
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:23 上午
- */
- public static function statistics(array $get = [], int $shop_id = 0, $is_export = false)
- {
- $order = new Order();
- $where = static::getWhere($get);
-
- $page = $get['page'] ?? 1;
- $limit = $get['limit'] ?? 10;
-
- $where[] = ['o.delete', '=', 0];
- $where[] = ['o.del', '=', 0];
- $where[] = ['o.shop_id', '=', $shop_id];
-
- if (Validate::must($get['page'] ?? '')) {
- $page = $get['page'];
- }
-
- if (Validate::must($get['limit'] ?? '')) {
- $limit = $get['limit'];
- }
-
- // 导出excel
- if (true === $is_export) {
- return self::export($where);
- }
-
- $field = 'o.*,s.name as shop_name,u.level';
-
- $count = $order
- ->alias('o')
- ->Join('shop s', 's.id = o.shop_id')
- ->Join('user u', 'u.id = o.user_id')
- ->Join('order_goods g', 'g.order_id = o.id')
- ->where($where)
- ->group('o.id')
- ->count();
-
- $lists = $order
- ->alias('o')
- ->field($field)
- ->Join('shop s', 's.id = o.shop_id')
- ->Join('user u', 'u.id = o.user_id')
- ->Join('order_goods g', 'g.order_id = o.id')
- ->with(['order_goods', 'user'])
- ->where($where)
- ->append([
- 'delivery_address', 'pay_status_text', 'order_source_text',
- 'order_status_text', 'delivery_type_text','order_type_text',
- 'pay_way_text', 'is_team_success', 'to_ship_btn', 'to_verification_btn', 'edit_address_btn',
- ])
- ->page($page, $limit)
- ->order('o.id desc')
- ->group('o.id')
- ->select()->toArray();
-
- $user_level = UserLevel::where(['del'=>0])->column('name','id');
-
- foreach ($lists as &$list) {
- $list['pay_time'] = $list['pay_time'] == '0' ? '未支付' : date('Y-m-d H:i:s', $list['pay_time']);
- $list['user']['avatar'] = UrlServer::getFileUrl($list['user']['avatar']);
- foreach ($list['order_goods'] as $order_good) {
- $order_good['image'] = UrlServer::getFileUrl($order_good['image']);
- }
-
- // 订单核销按钮 & 发货按钮 & 修改地址
- $list['verification_btn'] = $list['to_verification_btn'];
- $list['send_btn'] = $list['to_ship_btn'];
- $list['change_address_btn'] = $list['edit_address_btn'];
-
- // 会员等级
- $list['user_level'] = '暂无等级';
- if(isset($user_level[$list['level']])) {
- $list['user_level'] = $user_level[$list['level']];
- }
-
- //会员优惠
- $list['member_amount'] = $list['member_amount'] ?? 0.00;
- }
- return ['count' => $count, 'lists' => $lists];
- }
-
- static function getWhere($data)
- {
- $where = [];
- $where[] = [ 'o.del', '=', 0 ];
- $where[] = [ 'o.delete', '=', 0 ];
-
- //订单状态选项卡
- if (Validate::must($data['type'] ?? '')) {
- $where[] = [ 'order_status', '=', $data['type'] ];
- }
-
- //订单搜素
- if (! empty($data['search_key']) && ! empty($data['keyword'])) {
- $keyword = $data['keyword'];
- switch ($data['search_key']) {
- case 'order_sn':
- $where[] = ['o.order_sn', '=', $keyword];
- break;
- case 'user_sn':
- $where[] = ['u.sn', '=', $keyword];
- break;
- case 'shop_name':
- $where[] = ['s.name', 'like', '%' . $keyword . '%'];
- break;
- case 'goods_name':
- $where[] = ['g.goods_name', 'like', '%' . $keyword . '%'];
- break;
- case 'user_id':
- $where[] = ['o.user_id', '=', $keyword];
- break;
- case 'nickname':
- $where[] = ['u.nickname', 'like', '%' . $keyword . '%'];
- break;
- case 'user_mobile':
- $where[] = ['u.mobile', '=', $keyword];
- break;
- case 'consignee':
- $where[] = ['consignee', '=', $keyword];
- break;
- case 'consignee_mobile':
- $where[] = ['o.mobile', '=', $keyword];
- break;
- }
- }
-
- //商品名称
- if (Validate::must($data['goods_name'] ?? '')) {
- $where[] = ['g.goods_name', 'like', '%' . $data['goods_name'] . '%'];
- }
-
- //配送方式
- if (Validate::must($data['delivery_type'] ?? '')) {
- $where[] = ['o.delivery_type', '=', $data['delivery_type']];
- }
-
- //订单状态
- if (Validate::must($data['order_status'] ?? '')) {
- $where[] = [ 'o.order_status', '=', $data['order_status'] ];
- }
-
- //订单类型
- if (Validate::must($data['order_type'] ?? '')) {
- $where[] = [ 'o.order_type', '=', $data['order_type'] ];
- }
-
- //付款方式
- if (Validate::must($data['pay_way'] ?? '')) {
- $where[] = [ 'o.pay_way', '=', $data['pay_way'] ];
- }
-
- //订单来源
- if (Validate::must($data['order_source'] ?? '')) {
- $where[] = ['o.order_source', '=', $data['order_source']];
- }
-
- //下单时间
- if (Validate::must($data['start_time'] ?? '')) {
- $where[] = ['o.create_time', '>=', strtotime($data['start_time'])];
- }
-
- if (Validate::must($data['end_time'] ?? '')) {
- $where[] = ['o.create_time', '<=', strtotime($data['end_time'])];
- }
-
- return $where;
- }
-
- public static function totalCount($shopId)
- {
- $all = Order::where(['shop_id' => $shopId, 'del' => 0, 'delete' => 0])->count();
- $waitPay = Order::where(['shop_id' => $shopId, 'order_status' => 0 , 'del' => 0, 'delete' => 0])->count();
- $waitDelivery = Order::where(['shop_id' => $shopId, 'order_status' => 1 , 'del' => 0, 'delete' => 0])->count();
- $waitReceipt = Order::where(['shop_id' => $shopId, 'order_status' => 2 , 'del' => 0, 'delete' => 0])->count();
- $waitComplete = Order::where(['shop_id' => $shopId, 'order_status' => 3 , 'del' => 0, 'delete' => 0])->count();
- $waitClose = Order::where(['shop_id' => $shopId, 'order_status' => 4 , 'del' => 0, 'delete' => 0])->count();
- return [
- 'all' => $all,
- 'wait_pay' => $waitPay,
- 'wait_delivery' => $waitDelivery,
- 'wait_receipt' => $waitReceipt,
- 'wait_complete' => $waitComplete,
- 'wait_close' => $waitClose,
- ];
- }
-
- /**
- * @notes 订单详情
- * @param $id
- * @return array|Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:23 上午
- */
- public static function getDetail($id)
- {
-
- $order = new Order();
- $result = $order
- ->with(['user', 'order_goods', 'invoice'])
- ->where('id', $id)
- ->append(['delivery_address', 'pay_status_text', 'order_status_text', 'pay_way_text', 'order_type_text', 'verification_status_text', 'can_change_invoice_no','to_ship_btn','to_verification_btn' ])
- ->find();
- $result['send_btn'] = $result['to_ship_btn'];
- $result['verification_btn'] = $result['to_verification_btn'];
- $result['pay_time'] = $result['pay_time'] == 0 ? '未支付' : date('Y-m-d H:i:s', $result['pay_time']);
- $user = $result['user'];
- $user['avatar'] = UrlServer::getFileUrl($user['avatar']);
- $result['user'] = $user;
- foreach ($result['order_goods'] as &$order_goods) {
- $order_goods['goods_image'] = empty($order_goods['spec_image']) ?
- UrlServer::getFileUrl($order_goods['image']) : UrlServer::getFileUrl($order_goods['spec_image']);
- }
-
- if ($result['order_type'] == OrderEnum::TEAM_ORDER) {
- $team = TeamJoin::field('TJ.status,TF.status as found_status')->alias('TJ')
- ->where(['TJ.order_id'=>$result['id']])
- ->join('team_found TF', 'TF.id = TJ.team_id')
- ->findOrEmpty()->toArray();
- $result['is_team_success'] = false;
- if ($team) {
- $result['is_team_success'] = $team['found_status'] == 1 ? true : false;
- }
- }
-
- // 自提提货时间
- if ($result['delivery_type'] == OrderEnum::DELIVERY_TYPE_SELF && $result['verification_status']) {
- $result['confirm_take_time'] = date('Y-m-d H:i:s', $result['confirm_take_time']);
- } else {
- $result['confirm_take_time'] = '';
- }
-
- //会员优惠
- $result['member_amount'] = $result['member_amount'] ?? 0.00;
-
- return $result;
- }
-
- /**
- * @notes 物流信息
- * @param $order_id
- * @return array|\PDOStatement|string|Model|null
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function shippingInfo($order_id)
- {
-
- $shipping = Db::name('delivery')->where('order_id', $order_id)->find();
- if ($shipping) {
- $shipping['create_time_text'] = date('Y-m-d H:i:s', $shipping['create_time']);
- }
- $shipping['traces'] = self::getShipping($order_id);
- return $shipping;
- }
-
- /**
- * @notes 物流轨迹
- * @param $order_id
- * @return bool|string[]
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function getShipping($order_id)
- {
-
- $orderModel = new Order();
- $order = $orderModel->alias('o')
- ->field('invoice_no,shipping_name,shipping_id,o.shipping_status,o.mobile')
- ->join('delivery d', 'd.order_id = o.id')
- ->where(['o.id' => $order_id])
- ->find();
- $express = ConfigServer::get('express', 'way', '', '');
- $key = ConfigServer::get($express, 'appkey');
- $app = ConfigServer::get($express, 'appsecret');
-
- if (empty($express) || $order['shipping_status'] != 1 || empty($app) || empty($key)) {
- return $traces[] = ['暂无物流信息'];
- }
- //快递配置设置为快递鸟时
- if ($express === 'kdniao') {
- $expressage = (new Kdniao($app, $key, true));
- $shipping_field = 'codebird';
- } else {
- $expressage = (new Kd100($app, $key, true));
- $shipping_field = 'code100';
- }
-
- //快递编码
- $shipping_code = Db::name('express')
- ->where(['id' => $order['shipping_id']])
- ->value($shipping_field);
-
- //获取物流轨迹
- if (in_array(strtolower($shipping_code ), [ 'sf', 'shunfeng' ])) {
- if ($express === 'kdniao') {
- $expressage->logistics($shipping_code, $order['invoice_no'], substr($order['mobile'], -4));
- } else {
- $expressage->logistics($shipping_code, $order['invoice_no'], $order['mobile']);
- }
- }else {
- $expressage->logistics($shipping_code, $order['invoice_no']);
- }
- $traces = $expressage->logisticsFormat();
- if ($traces == false) {
- $traces[] = [$expressage->getError()];
- } else {
- foreach ($traces as &$item) {
- $item = array_values(array_unique($item));
- }
- }
- return $traces;
- }
-
- /**
- * @notes 获取物流
- * @return \think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function express()
- {
- return Express::where('del', 0)->select();
- }
-
- static function change_invoice_no($post)
- {
- $id = $post['order_id'];
- $order = Order::where(['id' => $id])->find();
- if (!$order) {
- return '订单失效';
- }
-
- if ($order['del'] == 1) {
- return '订单已删除';
- }
-
- if (! $order->getAttr('can_change_invoice_no')) {
- return '已不能修改物流单号';
- }
-
- //
- if ($post['send_type'] == 1 && empty($post['invoice_no'])) {
- return '请输入快递单号';
- }
-
- $delivery_data = [
- 'invoice_no' => $post['invoice_no'] ?? '',
- ];
-
- $shipping = Db::name('express')->where('id', $post['shipping_id'])->find();
-
- if ($post['send_type'] == 1) {
- $delivery_data['shipping_id'] = $post['shipping_id'];
- $delivery_data['shipping_name'] = $shipping['name'] ?? '';
- }
-
- Delivery::update($delivery_data, [ [ 'order_id', '=', $post['order_id'] ] ]);
-
- return true;
- }
-
- /**
- * @notes 发货操作
- * @param $data
- * @param $admin_id
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function deliveryHandle($data, $admin_id)
- {
-
- $order_id = $data['order_id'];
- $order = Order::where(['del' => 0, 'id' => $order_id])->find();
-
- if ($order['shipping_status'] == 1) {
- return true;
- }
-
- $shipping = Db::name('express')->where('id', $data['shipping_id'])->find();
-
- //添加发货单
- $delivery_data = [
- 'order_id' => $order_id,
- 'order_sn' => $order['order_sn'],
- 'user_id' => $order['user_id'],
- 'admin_id' => $admin_id,
- 'consignee' => $order['consignee'],
- 'mobile' => $order['mobile'],
- 'province' => $order['province'],
- 'city' => $order['city'],
- 'district' => $order['district'],
- 'address' => $order['address'],
- 'invoice_no' => $data['invoice_no'],
- 'send_type' => $data['send_type'],
- 'create_time' => time(),
- ];
- //配送方式->快递配送
- if ($data['send_type'] == 1) {
- $delivery_data['shipping_id'] = $data['shipping_id'];
- $delivery_data['shipping_name'] = $shipping['name'];
- $delivery_data['shipping_status'] = 1;
- }
- $delivery_id = Db::name('delivery')->insertGetId($delivery_data);
-
-
- //更新订单下商品的发货状态
- $order->update_time = time();
- $order->shipping_time = time();
- $order->shipping_status = 1;
- $order->order_status = Order::STATUS_WAIT_RECEIVE;
- $order->delivery_id = $delivery_id;
- $order->save();
-
- //订单日志
- OrderLogLogic::record(
- OrderLogEnum::TYPE_SHOP,
- OrderLogEnum::SHOP_DELIVERY_ORDER,
- $order_id,
- $admin_id,
- OrderLogEnum::SHOP_DELIVERY_ORDER
- );
-
- //通知用户发货
- if (!empty($order['mobile'])) {
- event('Notice', [
- 'scene' => NoticeEnum::ORDER_DELIVERY_NOTICE,
- 'mobile' => $order['mobile'],
- 'params' => [
- 'order_id' => $order['id'],
- 'user_id' => $order['user_id'],
- 'shipping_name' => $delivery_data['shipping_name'] ?? '无需快递',
- 'invoice_no' => $data['invoice_no'] ?? '',
- ]
- ]);
- }
- }
-
- /**
- * @notes 判断是否可以发货
- * @param $post
- * @return bool|string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function checkDelivery($post)
- {
-
- $id = $post['order_id'];
- $order = Order::where(['id' => $id])->find();
- if (!$order) {
- return '订单失效';
- }
-
- if ($order['del'] == 1) {
- return '订单已删除';
- }
-
- if ($order['shipping_status'] == 1) {
- return '此订单已发货';
- }
-
- //
- if ($post['send_type'] == 1 && empty($post['invoice_no'])) {
- return '请输入快递单号';
- }
-
- if ($order['order_type'] == OrderEnum::TEAM_ORDER) {
- $join = TeamJoin::where(['order_id' => $order['id']])->findOrEmpty();
- if ($join['status'] != Team::STATUS_SUCCESS) {
- return '已支付的拼团订单需要等待拼团成功后才能发货';
- }
- }
-
- return true;
- }
-
- /**
- * @notes 判断是否可以取消订单
- * @param $post
- * @return bool|string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function checkCancel($post)
- {
-
- $id = $post['order_id'];
- $order = Order::where(['id' => $id, 'del' => 0])->find();
-
- if (!$order) {
- return '订单失效';
- }
-
- if ($order['order_status'] > OrderEnum::ORDER_STATUS_DELIVERY && $order['delivery_type'] != 2) {
- return '此订单不可取消';
- }
-
- if ($order['order_status'] > OrderEnum::ORDER_STATUS_GOODS && $order['delivery_type'] == 2) {
- return '此订单不可取消';
- }
-
- if ($order['order_type'] == OrderEnum::TEAM_ORDER) {
- $found = Db::name('team_join')->where(['order_id' => $order['id']])->find();
- if ($found['status'] == Team::STATUS_WAIT_SUCCESS) {
- return '已支付的拼团订单需要有拼团结果才可以取消';
- }
- }
- return true;
- }
-
- /**
- * @notes 取消订单(返回商品规格表库存)
- * @param $order_id
- * @param $admin_id
- * @return bool|string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @throws \think\exception\DbException
- * @throws \think\exception\PDOException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function cancel($order_id, $admin_id)
- {
-
- Db::startTrans();
- try {
- $order = Order::where(['id' => $order_id], ['orderGoods'])->find();
-
- // 如果是拼团订单
- $team_join = (new TeamJoin())->where(['order_id' => $order['id'],'status'=>TeamEnum::TEAM_STATUS_CONDUCT])->findOrEmpty()->toArray();//拼团中
- if ($order['order_type'] == OrderEnum::TEAM_ORDER && !empty($team_join)) {
- $time = time();
- $team_id = $team_join['team_id'];
- $teamJoin = (new TeamJoin())->alias('TJ')
- ->field(['TJ.*,O.order_sn,O.order_status,O.pay_status,O.refund_status,O.order_amount'])
- ->where(['team_id' => $team_id])
- ->join('order O', 'O.id=TJ.order_id')
- ->select()->toArray();
-
- TeamFound::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'team_end_time' => $time], ['id' => $team_id]);
- foreach ($teamJoin as $item) {
- TeamJoin::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'update_time' => $time], ['id' => $item['id']]);
- OrderRefundLogic::cancelOrder($item['order_id'], OrderLogEnum::TYPE_SHOP, $admin_id); //取消订单
-
- if ($item['pay_status'] == PayEnum::ISPAID) {
- $order = (new Order())->findOrEmpty($item['order_id'])->toArray();
- OrderRefundLogic::cancelOrderRefundUpdate($order); //更新订单状态
- OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']); //订单退款
- }
- }
-
-
- } else {
-
- //取消订单
- OrderRefundLogic::cancelOrder($order_id, OrderLogEnum::TYPE_SHOP, $admin_id);
- //已支付的订单,取消,退款
- if ($order['pay_status'] == PayEnum::ISPAID) {
- //更新订单状态
- OrderRefundLogic::cancelOrderRefundUpdate($order);
- //订单退款
- OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']);
- }
- }
-
- Db::commit();
- return true;
-
- } catch (\Exception $e) {
- Db::rollback();
- //增加退款失败记录
- OrderRefundLogic::addErrorRefund($order, $e->getMessage());
- return $e->getMessage();
- }
- }
-
- /**
- * @notes 判断是否可以删除订单
- * @param $post
- * @return bool|string
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function checkDel($post)
- {
-
- $id = $post['order_id'];
- $order = Order::where(['id' => $id])->find();
-
- if (!$order) {
- return '订单失效';
- }
-
- if ($order['del'] == 1) {
- return '订单已删除';
- }
-
- if ($order['order_status'] != OrderEnum::ORDER_STATUS_DOWN) {
- return '此订单不可删除';
- }
- return true;
- }
-
- /**
- * @notes 删除已取消的订单
- * @param $order_id
- * @param $admin_id
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:24 上午
- */
- public static function del($order_id, $admin_id)
- {
-
- $order = Order::where(['delete' => 0, 'id' => $order_id])->find();
- $order->save(['delete' => 1, 'update_time' => time()]);
-
- //订单日志
- OrderLogLogic::record(
- OrderLogEnum::TYPE_SHOP,
- OrderLogEnum::SHOP_DEL_ORDER,
- $order_id,
- $admin_id,
- OrderLogEnum::SHOP_DEL_ORDER
- );
- }
-
- /**
- * @notes 确认收货
- * @param $order_id
- * @param $admin_id
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:25 上午
- */
- public static function confirm($order_id, $admin_id)
- {
-
- $order = Order::where(['del' => 0, 'id' => $order_id])->find();
- $order->order_status = Order::STATUS_FINISH;
- $order->update_time = time();
- $order->confirm_take_time = time();
- $order->save();
-
- //订单日志
- OrderLogLogic::record(
- OrderLogEnum::TYPE_SHOP,
- OrderLogEnum::SHOP_CONFIRM_ORDER,
- $order_id,
- $admin_id,
- OrderLogEnum::SHOP_CONFIRM_ORDER
- );
- }
-
- /**
- * @notes 订单备注
- * @param $post
- * @param string $type
- * @return Order|array|Model
- * @author suny
- * @date 2021/7/14 10:25 上午
- */
- public static function remarks($post, $type = "get")
- {
-
- if ($type === 'get') {
- return Order::field('id,order_remarks')
- ->where(['id' => $post['id']])
- ->findOrEmpty();
- } else {
- return Order::where(['id' => $post['id']])
- ->update(['order_remarks' => $post['order_remarks']]);
- }
- }
-
-
- /**
- * @notes 打印订单
- * @param $id
- * @param $shop_id
- * @return string|void
- * @author 段誉
- * @date 2022/1/20 11:24
- */
- public static function orderPrint($id, $shop_id)
- {
- try {
- //打印机配置
- $config = PrinterConfig::where(['status' => 1, 'shop_id' => $shop_id])->findOrEmpty();
- //打印机列表
- $printers = Printer::where([
- 'shop_id' => $shop_id,
- 'config_id' => $config['id'],
- 'del' => 0,
- 'status' => 1
- ])->select()->toArray();
-
- if ($config->isEmpty() || empty($printers)) {
- throw new Exception('请先配置打印机');
- }
-
- // 订单信息
- $order = self::getPrintOrder($id);
-
- $yly_print = new YlyPrinter($config['client_id'], $config['client_secret'], $shop_id);
- // 模板
- $template = PrinterLogic::getPrinterTpl($shop_id);
- $yly_print->ylyPrint($printers, $order, $template);
-
- return true;
-
- } catch (\Exception $e) {
- $msg = json_decode($e->getMessage(), true);
- if ($msg && isset($msg['error'])) {
- return '易联云:' . $msg['error_description'];
- }
- if (18 === $e->getCode()) {
- Cache::rm('yly_access_token' . $shop_id);
- Cache::rm('yly_refresh_token' . $shop_id);
- }
- return '易联云:' . $e->getMessage();
- }
- }
-
-
- /**
- * @notes 获取打印订单
- * @param $id
- * @return array
- * @author 段誉
- * @date 2022/1/21 9:58
- */
- public static function getPrintOrder($id)
- {
- return (new Order())
- ->with(['user', 'order_goods'])
- ->where('id', $id)
- ->append(['delivery_address'])
- ->findOrEmpty()->toArray();
- }
-
- /**
- * @notes 获取地址
- * @param $post
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:25 上午
- */
- public static function change_address($post)
- {
-
- $order = new Order();
- $info = $order->where(['id' => $post['id']])
- ->field(['id', 'province', 'city', 'district', 'address','consignee','mobile'])
- ->find()->toArray();
- $info = json_encode($info, JSON_UNESCAPED_UNICODE);
- $address_tree = json_encode(self::getAddressTree(), JSON_UNESCAPED_UNICODE);
- $data = [
- 'info' => $info,
- 'address_tree' => $address_tree
- ];
- return $data;
- }
-
- /**
- * @notes 获取城市信息
- * @return \think\Collection
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author suny
- * @date 2021/7/14 10:25 上午
- */
- public static function getAddressTree()
- {
-
- $DevRegion = new DevRegion();
- $lists = $DevRegion
- ->field(['name', 'id', 'parent_id', 'level'])
- ->where('level', '>', 0)
- ->select();
- return $lists;
- }
-
- /**
- * @notes 修改地址
- * @param $post
- * @author suny
- * @date 2021/7/14 10:27 上午
- */
- public static function change_address_post($post)
- {
-
- $order = new Order();
- $data = [
- 'province' => $post['province'],
- 'city' => $post['city'],
- 'district' => $post['district'],
- 'address' => $post['address'],
- 'consignee' => $post['consignee'],
- 'mobile' => $post['mobile'],
- ];
- $order->where(['id' => $post['order_id']])->update($data);
- }
-
- /**
- * @notes 获取各列表数量
- * @param $shop_id
- * @return int
- * @author suny
- * @date 2021/7/14 10:27 上午
- */
- public static function getAll($shop_id)
- {
-
- $data = input();
-
- unset($data['type']);
-
- return Order::alias('o')
- ->join('shop s', 's.id = o.shop_id')
- ->join('user u', 'u.id = o.user_id')
- ->join('order_goods g', 'g.order_id = o.id')
- ->with(['order_goods', 'user', 'shop'])
- ->where(static::getWhere($data))
- ->where('o.shop_id', $shop_id)
- ->where('o.del', 0)
- ->where('o.delete', 0)
- ->group('o.id')
- ->count();
- }
-
- /**
- * @notes 拼装统计信息
- * @param $order_status
- * @return array
- * @author suny
- * @date 2021/7/13 3:36 下午
- */
- public static function getStat($order_status, $shop_id)
- {
-
- $data = input();
-
- unset($data['type']);
-
- $result = [];
-
- foreach ($order_status as $status => $title) {
- $num = Order::alias('o')
- ->join('shop s', 's.id = o.shop_id')
- ->join('user u', 'u.id = o.user_id')
- ->join('order_goods g', 'g.order_id = o.id')
- ->with(['order_goods', 'user', 'shop'])
- ->where(static::getWhere($data))
- ->where('o.order_status', $status)
- ->where('o.shop_id', $shop_id)
- ->where('o.del', 0)
- ->where('o.delete', 0)
- ->group('o.id')
- ->count();
-
- $result[] = [
- 'title' => $title,
- 'status' => $status,
- 'count' => $num,
- ];
- }
-
- return $result;
- }
-
-
- /**
- * @notes 虚拟商品发货
- * @param $post
- * @param $admin_id
- * @return bool|void
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/4/7 17:55
- */
- public static function virtualDelivery($post, $admin_id)
- {
- try {
- $order_id = $post['order_id'];
- $order = Order::with(['order_goods'])->where(['del' => 0, 'id' => $order_id])->find();
-
- // 更新发货订单信息
- $result = GoodsVirtualLogic::shopSelfDelivery($order_id, $post['delivery_content']);
- if (true !== $result) {
- throw new \Exception($result);
- }
-
- //订单日志
- OrderLogLogic::record(
- OrderLogEnum::TYPE_SHOP,
- OrderLogEnum::SHOP_DELIVERY_ORDER,
- $order_id,
- $admin_id,
- OrderLogEnum::SHOP_DELIVERY_ORDER
- );
-
- //通知用户发货
- if (!empty($order['mobile'])) {
- event('Notice', [
- 'scene' => NoticeEnum::ORDER_DELIVERY_NOTICE,
- 'mobile' => $order['mobile'],
- 'params' => [
- 'order_id' => $order['id'],
- 'user_id' => $order['user_id'],
- 'shipping_name' => '无需快递',
- 'invoice_no' => '',
- ]
- ]);
- }
-
- return true;
- } catch (\Exception $e) {
- self::$error = $e->getMessage();
- return false;
- }
- }
-
-
- /**
- * @notes 导出Excel
- * @param array $condition
- * @return array|false
- * @author 段誉
- * @date 2022/4/24 10:10
- */
- public static function export($condition = [])
- {
- try {
- $field = 'o.*,order_status as order_status_text,pay_way as pay_way_text,
- o.delivery_type as delivery_type_text,order_type as order_type_text,
- u.nickname,s.name as shop_name';
-
- $lists = Order::alias('o')
- ->join('shop s', 's.id = o.shop_id')
- ->join('user u', 'u.id = o.user_id')
- ->join('order_goods g', 'g.order_id = o.id')
- ->with(['order_goods'])
- ->field($field)
- ->where($condition)
- ->append(['delivery_address', 'pay_status_text', 'order_source_text'])
- ->order('o.id desc')
- ->group('o.id')
- ->select()
- ->toArray();
-
- foreach ($lists as &$item) {
- $orderGoodsList = [];
- $goodsItemList = [];
- $goodsPriceList = [];
- $goodsNumList = [];
- foreach ($item['order_goods'] as $good) {
- $orderGoodsList[] = $good['goods_name'];
- $goodsItemList[] = $good['spec_value'];
- $goodsPriceList[] = $good['goods_price'];
- $goodsNumList[] = $good['goods_num'];
- }
- $item['order_goods_list'] = implode(';', $orderGoodsList);
- $item['goods_item_list'] = implode(';', $goodsItemList);
- $item['goods_price_list'] = implode(';', $goodsPriceList);
- $item['goods_num_list'] = implode(';', $goodsNumList);
- }
-
- $excelFields = [
- 'order_sn' => '订单编号',
- 'order_type_text' => '订单类型',
- 'nickname' => '用户名称',
- 'order_goods_list' => '商品信息',
- 'goods_item_list' => '规格',
- 'goods_price_list' => '商品价格',
- 'goods_num_list' => '商品数量',
- 'order_amount' => '实付金额',
- 'consignee' => '收货人',
- 'mobile' => '收货人手机',
- 'delivery_address' => '收货地址',
- 'pay_status_text' => '支付状态',
- 'order_status_text' => '订单状态',
- 'create_time' => '下单时间',
- ];
-
- $export = new ExportExcelServer();
- $export->setFileName('订单');
- $result = $export->createExcel($excelFields, $lists);
-
- return ['url' => $result];
-
- } catch (\Exception $e) {
- self::$error = $e->getMessage();
- return false;
- }
- }
-
-
- /**
- * @notes 提货核销
- * @param $params
- * @param $adminInfo
- * @return bool
- * @author 段誉
- * @date 2022/11/2 14:58
- */
- public static function verification($params, $adminInfo)
- {
- Db::startTrans();
- try {
- $order = Order::find($params['order_id']);
-
- //添加核销记录
- Verification::create([
- 'order_id' => $order['id'],
- 'shop_id' => $order['shop_id'],
- 'handle_id' => $adminInfo['id'],
- 'verification_scene' => VerificationEnum::TYPE_SHOP,
- 'snapshot' => json_encode([
- 'sn' => $adminInfo['account'],
- 'name' => $adminInfo['name']
- ]),
- ]);
-
- //更新订单状态
- $order->order_status = OrderEnum::ORDER_STATUS_COMPLETE;
- $order->verification_status = OrderEnum::WRITTEN_OFF;
- $order->confirm_take_time = time();
- $order->save();
-
- //订单日志
- OrderLogLogic::record(
- OrderLogEnum::TYPE_SHOP,
- OrderLogEnum::SHOP_VERIFICATION,
- $order['id'],
- $adminInfo['id'],
- OrderLogEnum::SHOP_VERIFICATION
- );
-
- Db::commit();
- return true;
-
- } catch (\Exception $e) {
- Db::rollback();
- self::$error = $e->getMessage();
- return false;
- }
- }
-
-
- /**
- * @notes 确认付款
- * @param $order_id
- * @param $adminInfo
- * @return string|true
- * @author ljj
- * @date 2024/7/19 下午6:32
- */
- public static function confirmPay($order_id, $adminInfo)
- {
- Db::startTrans();
- try {
- $order = Order::where(['id' => $order_id])->findOrEmpty()->toArray();
- $result = PayNotifyLogic::handle('order', $order['order_sn']);
- if (true !== $result) {
- throw new \Exception($result);
- }
-
- Db::commit();
- return true;
- } catch (\Exception $e) {
- Db::rollback();
- return $e->getMessage();
- }
- }
- }
|