=', strtotime($get['start_time'])]; } if (!empty($get['end_time']) and $get['end_time']) { $where[] = ['O.create_time', '<=', strtotime($get['end_time'])]; } // 排除未拼团成功订单 $exclude = TeamJoin::where('status', '<>', TeamEnum::TEAM_STATUS_SUCCESS)->column('order_id'); $exclude = array_unique($exclude); $count = Order::where($where)->alias('O') ->join('user U', 'U.id = O.user_id') ->join('orderGoods OG', 'OG.order_id = O.id') ->leftJoin('team_join TJ', "TJ.order_id = O.id and TJ.status = " . TeamEnum::TEAM_STATUS_SUCCESS) ->whereNotIn('O.id', $exclude) ->count('O.id'); $lists = Order::alias('O') ->field( 'O.id,O.user_id,O.order_type,O.order_sn,O.order_status,O.total_num, O.order_amount,O.delivery_type,O.consignee,O.mobile,O.province,O.city,O.district, O.address,O.create_time,TJ.status as team_join_status' ) ->where($where) ->whereNotIn('O.id', $exclude) ->join('user U', 'U.id = O.user_id') ->join('orderGoods OG', 'OG.order_id = O.id') ->leftJoin('team_join TJ', "TJ.order_id = O.id and TJ.status = " . TeamEnum::TEAM_STATUS_SUCCESS) ->order(['O.id' => 'desc']) ->page($get['page'], $get['limit']) ->select(); foreach ($lists as &$item) { $user = User::field('nickname,sn')->where(['id' => $item['user_id']])->find(); $item['user'] = $user['nickname']; $item['order_type'] = Order::getOrderType($item['order_type']); $item['order_status'] = Order::getOrderStatus($item['order_status']); $item['delivery_type'] = Order::getDeliveryType($item['delivery_type']); $item['address'] = AreaServer::getAddress([$item['province'], $item['city'], $item['district']], $item['address']); $orderGoods = OrderGoods::where(['order_id' => $item['id']])->select(); $orderGoodsData = []; foreach ($orderGoods as $og) { $orderGoodsData[] = [ 'id' => $og['id'], 'goods_price' => $og['goods_price'], 'goods_num' => $og['goods_num'], 'goods_name' => $og['goods_name'], 'spec_value_str' => $og['spec_value'], 'image' => UrlServer::getFileUrl($og['image']), ]; } $item['orderGoods'] = $orderGoodsData; } return ['count' => $count, 'lists' => $lists]; } /** * @notes 打印 * @param $params * @return bool * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException * @author 段誉 * @date 2023/2/13 18:46 */ public static function print($params) { $template = FaceSheetTemplate::findOrEmpty($params['template_id'])->toArray(); $sender = FaceSheetSender::findOrEmpty($params['sender_id'])->toArray(); $express = Express::findOrEmpty($template['express_id'])->toArray(); $order = Order::with('orderGoods') ->where('shop_id', $params['shop_id']) ->where('id', $params['order_id']) ->findOrEmpty() ->toArray(); $result = self::singlePrint($order, $template, $sender, $express, $params['admin_id'], $params['shop_id']); if ($result !== true) { // 打印电子面单出错,中断打印 self::$error = '订单' . $order['order_sn'] . '打印出错:' . $result; return false; } return true; } /** * @notes 打印 * @param $order * @param $template * @param $sender * @param $express * @param $admin_id * @return bool|string * @author 段誉 * @date 2023/2/13 18:46 */ public static function singlePrint($order, $template, $sender, $express, $admin_id, $shop_id) { Db::startTrans(); try { $goodsName = ''; $totalWeight = 0; foreach($order['orderGoods'] as $item) { if (empty($item['weight'])) { $item['weight'] = GoodsItem::where('id', $item['item_id'])->value('weight'); } $totalWeight += $item['weight']; $goodsName .= $item['goods_name'] . ' (' . $item['spec_value'] . $item['goods_num'] . '件)\n'; } // 打印电子面单 $result = (new Kuaidi100($shop_id))->print([ 'order' => $order, 'template' => $template, 'sender' => $sender, 'express' => $express, 'total_weight' => round($totalWeight, 2), 'remark' => $goodsName, ]); // 添加发货记录 self::orderDelivery($result, $order, $express, $admin_id); Db::commit(); return true; } catch (\Exception $e) { Db::rollback(); return $e->getMessage(); } } /** * @notes 发货 * @param $print * @param $order * @param $express * @param $admin_id * @author 段誉 * @date 2023/2/13 18:44 */ public static function orderDelivery($print, $order, $express, $admin_id) { //添加发货单 $delivery_id = (new Delivery())->insertGetId([ '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' => $print['data']['kuaidinum'], 'send_type' => 1, 'shipping_id' => $express['id'], 'shipping_name' => $express['name'], 'shipping_status' => 1, 'create_time' => time(), ]); //更新订单下商品的发货状态 Order::where('id', $order['id'])->update([ 'order_status' => Order::STATUS_WAIT_RECEIVE, 'delivery_id' => $delivery_id, 'shipping_status' => 1, 'update_time' => time(), 'shipping_time' => time(), ]); //订单日志 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' => $express['name'], 'invoice_no' => $print['data']['kuaidinum'], ] ]); } } }