123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515 |
- <?php
-
- namespace app\api\logic;
-
- use app\common\basics\Logic;
- use app\common\enum\IntegralGoodsEnum;
- use app\common\enum\IntegralOrderEnum;
- use app\common\enum\PayEnum;
- use app\common\logic\AccountLogLogic;
- use app\common\logic\IntegralOrderRefundLogic;
- use app\common\logic\PayNotifyLogic;
- use app\common\model\AccountLog;
- use app\common\model\integral\IntegralGoods;
- use app\common\model\integral\IntegralOrder;
- use app\common\model\user\User;
- use app\common\server\ConfigServer;
- use app\common\server\UrlServer;
- use expressage\Kd100;
- use expressage\Kdniao;
- use think\facade\Env;
- use think\facade\Db;
-
- /**
- * 积分商城订单
- * Class IntegralOrderLogic
- * @package app\api\logic
- */
- class IntegralOrderLogic extends Logic
- {
-
- /**
- * @notes 结算订单
- * @param $params
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/3/2 9:50
- */
- public static function settlement($params)
- {
- // 地址
- if (empty($params['address_id']) || !$params['address_id']) {
- $address = UserAddressLogic::getDefaultAddress($params['user_id']);
- } else {
- $address = UserAddressLogic::getOneAddress($params['user_id'], ['id' => $params['address_id']]);
- }
-
- // 订单需支付总金额
- $order_amount = 0;
- $goods_price = 0;
-
- $goods = IntegralGoods::withoutField(['content', 'update_time'])->findOrEmpty($params['id'])->toArray();
- // 兑换方式为纯积分
- if ($goods['exchange_way'] == IntegralGoodsEnum::EXCHANGE_WAY_INTEGRAL) {
- // 订单需支付积分
- $order_integral = $goods['need_integral'] * $params['num'];
- } else {
- // 订单需支付总金额
- $goods_price = $goods['need_money'] * $params['num'];
- $order_amount = $goods_price;
- // 订单需支付总积分
- $order_integral = $goods['need_integral'] * $params['num'];
- }
-
- // 运费
- $shipping_price = 0;
- // 快递配送 && 快递统一运费 && 运费>0
- if ($goods['delivery_way'] == IntegralGoodsEnum::DELIVERY_EXPRESS
- && $goods['express_type'] == IntegralGoodsEnum::EXPRESS_TYPE_UNIFIED
- && $goods['express_money'] > 0) {
- $order_amount = $order_amount + $goods['express_money'];
- $shipping_price = $goods['express_money'];
- }
-
- return [
- 'address' => $address,
- 'goods' => $goods,
- 'need_pay' => $order_amount > 0 ? 1 : 0,
- 'exchange_way' => $goods['exchange_way'],
- 'delivery_way' => $goods['delivery_way'],
- 'total_num' => intval($params['num']),
- 'shipping_price' => $shipping_price, // 运费
- 'goods_price' => round($goods_price, 2), // 商品金额(不包含运费)
- 'order_amount' => round($order_amount, 2), // 订单需要的金额(包含运费)
- 'order_integral' => $order_integral, // 订单需要返回的积分
- ];
- }
-
-
- /**
- * @notes 提交订单
- * @param $params
- * @return array|false
- * @author 段誉
- * @date 2022/3/2 9:50
- */
- public static function submitOrder($params)
- {
- Db::startTrans();
- try {
- // 结算详情(支付积分,支付金额)
- $settle = self::settlement($params);
-
- // 提交前验证
- $user = User::findOrEmpty($params['user_id']);
- if ($user['user_integral'] < $settle['order_integral']) {
- throw new \Exception('积分不足');
- }
-
- if ($settle['total_num'] <= 0) {
- throw new \Exception('请选择商品数量');
- }
-
- $settle['goods']['image'] = UrlServer::setFileUrl($settle['goods']['image']);
-
- // 提交订单
- $order = IntegralOrder::create([
- 'order_sn' => createSn('integral_order', 'order_sn'),
- 'user_id' => $params['user_id'],
- 'order_source' => $params['client'],
- 'delivery_way' => $settle['goods']['delivery_way'],
- 'exchange_type' => $settle['goods']['type'],
- 'exchange_way' => $settle['goods']['exchange_way'],
-
- 'consignee' => $settle['address']['contact'],
- 'province' => $settle['address']['province_id'],
- 'city' => $settle['address']['city_id'],
- 'district' => $settle['address']['district_id'],
- 'address' => $settle['address']['address'],
- 'mobile' => $settle['address']['telephone'],
-
- 'order_amount' => $settle['order_amount'],
- 'order_integral' => $settle['order_integral'],
- 'total_num' => $settle['total_num'],
- 'goods_price' => $settle['goods_price'],
- 'shipping_price' => $settle['shipping_price'],
-
- 'user_remark' => $params['user_remark'] ?? '',
- 'goods_snap' => $settle['goods']
- ]);
-
- // 扣减应付积分
- if ($settle['order_integral'] > 0) {
- User::where(['id' => $params['user_id']])
- ->dec('user_integral', $settle['order_integral'])
- ->update();
-
- AccountLogLogic::AccountRecord(
- $params['user_id'],
- $settle['order_integral'], 2,
- AccountLog::pay_integral_order,
- '', $order['id'], $order['order_sn']
- );
- }
-
- // 兑换方式-积分 且没有运费 扣减积分后 直接支付完成
- if ($settle['goods']['exchange_way'] == IntegralGoodsEnum::EXCHANGE_WAY_INTEGRAL && $settle['order_amount'] <= 0) {
- PayNotifyLogic::handle('integral', $order['order_sn']);
- }
- Db::commit();
-
- return ['order_id' => $order['id'], 'type' => 'integral'];
-
- } catch (\Exception $e) {
- Db::rollback();
- self::$error = $e->getMessage();
- return false;
- }
- }
-
-
- /**
- * @notes 订单列表
- * @param $user_id
- * @param $type
- * @param $page
- * @param $size
- * @return array
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/3/2 9:39
- */
- public static function lists($user_id, $type, $page, $size)
- {
- $order = new IntegralOrder();
-
- $where[] = ['del', '=', 0];
- $where[] = ['user_id', '=', $user_id];
- if (isset($type) && $type != '') {
- $where[] = ['order_status', '=', $type];
- }
-
- $field = [
- 'id', 'order_sn', 'order_status', 'pay_status', 'shipping_status', 'shipping_price',
- 'delivery_way', 'order_amount', 'total_num', 'order_integral', 'goods_snap',
- 'create_time', 'refund_status'
- ];
-
- $count = $order->where($where)->count();
- $lists = $order->where($where)->field($field)->page($page, $size)
- ->order('id desc')
- ->append(['btns'])
- ->select()->toArray();
-
- foreach ($lists as &$item) {
- $item['order_status'] = IntegralOrderEnum::getOrderStatus($item['order_status']);
- $goods = $item['goods_snap'];
- $item['goods'] = [
- 'image' => UrlServer::getFileUrl($goods['image']),
- 'name' => $goods['name'],
- 'need_integral' => $goods['need_integral'],
- 'need_money' => $goods['need_money'],
- 'exchange_way' => $goods['exchange_way'],
- ];
- unset($item['goods_snap']);
- }
-
- $data = [
- 'list' => $lists,
- 'page' => $page,
- 'size' => $size,
- 'count' => $count,
- 'more' => is_more($count, $page, $size)
- ];
- return $data;
- }
-
-
- /**
- * @notes 订单详情
- * @param $id
- * @return array
- * @author 段誉
- * @date 2022/3/2 10:22
- */
- public static function detail($id)
- {
- $order = IntegralOrder::where(['id' => $id])
- ->withoutField(['content', 'order_source', 'transaction_id', 'refund_amount'])
- ->append(['delivery_address', 'pay_time', 'btns'])
- ->findOrEmpty()->toArray();
-
- $order['pay_time'] = $order['pay_time'] ? date('Y-m-d H:i:s', $order['pay_time']) : '-' ;
- $order['shipping_time'] = $order['shipping_time'] ? date('Y-m-d H:i:s', $order['shipping_time']) : '-' ;
- $order['pay_way'] = PayEnum::getPayWay($order['pay_way']);
-
- $goods_snap = $order['goods_snap'];
- unset($order['goods_snap']);
-
- $order['goods'] = [
- 'image' => UrlServer::getFileUrl($goods_snap['image']),
- 'name' => $goods_snap['name'],
- 'exchange_way' => $goods_snap['exchange_way'],
- 'need_integral' => $goods_snap['need_integral'],
- 'need_money' => $goods_snap['need_money'],
- 'total_num' => $order['total_num'],
- ];
- return $order;
- }
-
-
- /**
- * @notes 确认收货
- * @param $id
- * @param $user_id
- * @author 段誉
- * @date 2022/3/2 10:59
- */
- public static function confirm($id, $user_id)
- {
- //更新订单状态
- IntegralOrder::update([
- 'order_status' => IntegralOrderEnum::ORDER_STATUS_COMPLETE,
- 'confirm_time' => time(),
- ], ['id' => $id, 'user_id' => $user_id]);
- }
-
-
- /**
- * @notes 删除订单
- * @param $id
- * @param $user_id
- * @author 段誉
- * @date 2022/3/2 10:59
- */
- public static function del($id, $user_id)
- {
- //更新订单状态
- IntegralOrder::update(['del' => 1], ['id' => $id, 'user_id' => $user_id]);
- }
-
-
- /**
- * @notes 取消订单
- * @param $id
- * @return bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- * @author 段誉
- * @date 2022/3/3 14:56
- */
- public static function cancel($id)
- {
- Db::startTrans();
- try {
- $order = IntegralOrder::findOrEmpty($id);
-
- // 更新订单状态, 退回库存, 扣减销量
- IntegralOrderRefundLogic::cancelOrder($id);
-
- // 退回已支付积分
- IntegralOrderRefundLogic::refundOrderIntegral($id);
-
- // 退回订单已支付积分或已支付金额
- if ($order['pay_status'] == PayEnum::ISPAID) {
- IntegralOrderRefundLogic::refundOrderAmount($id);
- }
-
- Db::commit();
- return true;
-
- } catch (\Exception $e) {
- Db::rollback();
- self::$error = $e->getMessage();
-
- IntegralOrderRefundLogic::addRefundLog(
- $order, $order['order_amount'],
- 2, $e->getMessage()
- );
-
- return false;
- }
- }
-
-
- /**
- * @notes 订单物流轨迹
- * @param $id
- * @return array
- * @author 段誉
- * @date 2022/3/3 17:29
- */
- public static function orderTraces($id)
- {
- $order = IntegralOrder::alias('o')
- ->field('invoice_no, shipping_name, shipping_id, send_type, o.shipping_status,
- o.mobile, o.province, o.city, o.district, o.address,o.total_num,o.goods_snap')
- ->join('integral_delivery d', 'd.order_id = o.id')
- ->where(['o.id' => $id])
- ->findOrEmpty();
-
- if ($order->isEmpty() || $order['send_type'] != 1) {
- return [];
- }
-
- //数据合并
- $order_traces = [
- 'order' => [
- 'tips' => self::getTracesOrderTips($order),
- 'image' => UrlServer::getFileUrl($order['goods_snap']['image']),
- 'count' => $order['total_num'],
- 'invoice_no' => $order['invoice_no'],
- 'shipping_name' => empty($order['shipping_name']) ? '-' : $order['shipping_name'],
- ],
- 'take' => [
- 'contacts' => $order['consignee'],
- 'mobile' => $order['mobile'],
- 'address' => $order['delivery_address'],
- ],
- 'finish' => self::getTracesFinish($order),
- 'delivery' => [
- 'title' => '运输中',
- 'traces' => self::getTraces($order)
- ],
- 'shipment' => self::getTracesShipment($order),
- 'buy' => [
- 'title' => '已下单',
- 'tips' => '订单提交成功',
- 'time' => date('Y-m-d H:i:s', $order['pay_time'])
- ],
- ];
- return $order_traces;
- }
-
-
-
- /**
- * @notes 订单物流-备注信息
- * @param $order
- * @return string
- * @author 段誉
- * @date 2022/3/3 17:30
- */
- public static function getTracesOrderTips($order)
- {
- $order_tips = '已下单';
- //确认收货
- if ($order['order_status'] == IntegralOrderEnum::ORDER_STATUS_COMPLETE) {
- $order_tips = '交易完成';
- }
- return $order_tips;
- }
-
-
- /**
- * @notes 订单物流-待收货信息
- * @param $order
- * @return string[]
- * @author 段誉
- * @date 2022/3/3 17:30
- */
- public static function getTracesShipment($order)
- {
- $shipment = [
- 'title' => '已发货',
- 'tips' => '',
- 'time' => '',
- ];
- //待收货
- if ($order['order_status'] == IntegralOrderEnum::ORDER_STATUS_GOODS) {
- $shipment['tips'] = '商品已出库';
- $shipment['time'] = date('Y-m-d H:i:s', $order['shipping_time']);
- }
- return $shipment;
- }
-
-
-
- /**
- * @notes 订单物流-订单完成信息
- * @param $order
- * @return string[]
- * @author 段誉
- * @date 2022/3/3 17:30
- */
- public static function getTracesFinish($order)
- {
- $finish = [
- 'title' => '交易完成',
- 'tips' => '',
- 'time' => '',
- ];
- //确认收货
- if ($order['order_status'] == IntegralOrderEnum::ORDER_STATUS_COMPLETE) {
- $finish['tips'] = '订单交易完成';
- $finish['time'] = $order['confirm_time'] ? date('Y-m-d H:i:s', $order['confirm_time']) : $order['confirm_time'];
- }
- return $finish;
- }
-
-
-
-
- /**
- * @notes 订单物流-物流轨迹
- * @param $order
- * @return array|bool
- * @author 段誉
- * @date 2022/3/3 17:31
- */
- public static function getTraces($order)
- {
- $express = ConfigServer::get('express', 'way', '', '');
- $key = ConfigServer::get($express, 'appkey');
- $app = ConfigServer::get($express, 'appsecret');
-
- // 没有配置,没有发货
- if (empty($express) || empty($key) || empty($app) || $order['shipping_status'] != IntegralOrderEnum::SHIPPING_FINISH) {
- return [];
- }
-
- //快递配置设置为快递鸟时
- if ($express === 'kdniao') {
- $expressage = (new Kdniao($app, $key, Env::get('app.app_debug', 'true')));
- $shipping_field = 'codebird';
- } else {
- $expressage = (new Kd100($app, $key, Env::get('app.app_debug', 'true')));
- $shipping_field = 'code100';
- }
- //快递编码
- $shipping_code = Db::name('express')->where(['id' => $order['shipping_id']])->value($shipping_field);
- //获取物流轨迹
- if ($shipping_code === 'SF' && $express === 'kdniao') {
- $expressage->logistics($shipping_code, $order['invoice_no'], substr($order['mobile'], -4));
- } else {
- $expressage->logistics($shipping_code, $order['invoice_no']);
- }
- $traces = $expressage->logisticsFormat();
- //获取不到物流轨迹时
- if ($traces == false) {
- $error = $expressage->getError();
- $error = json_decode($error, true);
- if ($express === 'kdniao') {
- if ($error['Success'] == false) {
- $traces[] = [$error['Reason']];
- }
- } else {
- if ($error['result'] == false) {
- $traces[] = [$error['message']];
- }
- }
- } else {
- foreach ($traces as &$item) {
- $item = array_values(array_unique($item));
- }
- }
- return $traces;
- }
-
-
- }
|