with(['order_goods' => function ($query) { $query->field('order_id,image,goods_name,goods_num,spec_value'); }]) ->where($where) ->append(['verification_status_text']) ->order(['id' => 'desc']) ->select() ->toArray(); $count = Order::where($where)->count(); return [ 'list' => $lists, 'page' => $pageNo, 'size' => $pageSize, 'count' => $count, 'more' => is_more($count, $pageNo, $pageSize) ]; } /** * @notes 订单详情 * @param $params * @param $shopId * @return array * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2022/11/2 18:08 */ public static function detail($params, $shopId) { $detail = Order::where('pickup_code',$params['pickup_code']) ->where('shop_id', $shopId) ->with([ 'user', 'order_goods' => function ($query) { $query->field('order_id,image,goods_name,goods_num,spec_value'); } ]) ->append(['verification_status_text']) ->field('id,address,verification_status,consignee,verification_status,consignee,mobile') ->find() ->toArray(); $detail['show_verification_nickname'] = $detail['consignee'] ? : ($detail['user']['nickname'] ?? ''); $detail['show_verification_mobile'] = $detail['mobile'] ? : ($detail['user']['mobile'] ?? ''); if ($detail['show_verification_mobile']) { $detail['show_verification_mobile'] = substr_replace($detail['show_verification_mobile'], '****', 3, 4); } return $detail; } /** * @notes 核销订单 * @param $params * @param $adminInfo * @return bool * @author 段誉 * @date 2022/11/2 17:11 */ public static function verification($params, $adminInfo) { Db::startTrans(); try { $order = Order::find($params['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; } } }