update all

This commit is contained in:
unknown 2023-08-15 10:07:33 +08:00
parent 99c2807ba2
commit 2f38b069d8
8 changed files with 99 additions and 82 deletions

View File

@ -19,6 +19,8 @@ use app\adminapi\lists\BaseAdminDataLists;
use app\common\model\logistics\Courier; use app\common\model\logistics\Courier;
use app\common\model\logistics\Logistics; use app\common\model\logistics\Logistics;
use app\common\lists\ListsSearchInterface; use app\common\lists\ListsSearchInterface;
use app\common\model\logistics\Product;
use think\db\Query;
/** /**
@ -39,12 +41,11 @@ class LogisticsLists extends BaseAdminDataLists implements ListsSearchInterface
public function setSearch(): array public function setSearch(): array
{ {
return [ return [
'%like%' => ['order_sn','shop_name','shop_phone','shop_address','user_name','user_address','user_phone'], '%like%' => ['order_sn','shop_name','shop_phone','shop_address','receiver_name','receiver_phone','receiver_address','courier_name','courier_company'],
'=' => ['order_id', 'status', 'qh_time', 'ps_time', 'qx_time'], '=' => ['order_id', 'status', 'qh_time', 'ps_time', 'qx_time'],
]; ];
} }
/** /**
* @notes 获取列表 * @notes 获取列表
* @return array * @return array
@ -54,21 +55,28 @@ class LogisticsLists extends BaseAdminDataLists implements ListsSearchInterface
* @author likeadmin * @author likeadmin
* @date 2023/08/10 15:41 * @date 2023/08/10 15:41
*/ */
public function lists(): array public function lists
(): array
{ {
return Logistics::where($this->searchWhere) return Logistics::where($this->searchWhere)
->field(['id', 'order_id', 'order_sn', 'courier_id', 'shop_id', 'shop_name', 'shop_phone', 'shop_address', 'shop_long', 'shop_lat', 'user_id', 'user_name', 'user_phone', 'user_address', 'status', 'qh_time', 'ps_time', 'qx_time','create_time', 'user_take_code']) ->field(['id', 'order_id', 'order_sn', 'courier_name','courier_company', 'shop_name', 'shop_phone', 'shop_address', 'receiver_name', 'receiver_phone', 'receiver_address', 'status', 'qh_time', 'ps_time', 'qx_time','create_time'])
->where($this->searchWhere) ->where($this->searchWhere)
->limit($this->limitOffset, $this->limitLength) ->limit($this->limitOffset, $this->limitLength)
->order(['id' => 'desc']) ->order(['id' => 'desc'])
->select() ->select()
->each(function ($item) { ->each(function ($item){
$item['status_name'] = $item->status_name; $item['status_name'] = $item->status_name;
$item['courier'] = Courier::alias('u') $product_count = 0;
->field('u.nickname,a.phone,c.company_name') //获取产品信息
->leftjoin('la_admin a', 'u.admin_id = a.id') $lst_item['products'] = Product::field('product_num,cart_info')->where('order_id', $item['order_id'])->select()->each(function($pro_item) use(&$product_count){
->leftjoin('la_company c', 'c.id = u.company_id') $pro_item['cart_info'] = json_decode($pro_item['cart_info'], true);
->where('u.id', $item['courier_id'])->find(); $pro_item['goods_name'] = $pro_item['cart_info']['product']['store_name'];
$pro_item['goods_unit'] = $pro_item['cart_info']['product']['unit_name'];
$product_count += $pro_item['product_num'];
unset($pro_item['cart_info']);
return $pro_item;
});
$item['product_count'] = $product_count;
return $item; return $item;
}) })
->toArray(); ->toArray();

View File

@ -42,13 +42,6 @@ class LogisticsLogic extends BaseLogic
{ {
$logistics = Logistics::findOrEmpty($params['id']); $logistics = Logistics::findOrEmpty($params['id']);
$logistics['status_name'] = $logistics->status_name; $logistics['status_name'] = $logistics->status_name;
//获取配送员信息
$courier = Courier::alias('u')
->field('u.nickname,a.phone,c.company_name')
->leftjoin('la_admin a', 'u.admin_id = a.id')
->leftjoin('la_company c', 'c.id = u.company_id')
->where('u.id', $logistics['courier_id'])->find();
$logistics['courier'] = $courier;
//获取商品信息 //获取商品信息
$product_count = 0; $product_count = 0;
$product = Product::field('product_num,cart_info')->where('order_id', $logistics['order_id'])->select()->each(function($pro_item) use(&$product_count){ $product = Product::field('product_num,cart_info')->where('order_id', $logistics['order_id'])->select()->each(function($pro_item) use(&$product_count){
@ -83,9 +76,6 @@ class LogisticsLogic extends BaseLogic
unset($red_item['type'], $red_item['user_name']); unset($red_item['type'], $red_item['user_name']);
})->toArray(); })->toArray();
$logistics['records'] = $records; $logistics['records'] = $records;
//获取下单用户信息
$orderUser = User::field('uid,nickname,phone')->where('uid',$logistics['user_id'])->find();
$logistics['order_user'] = $orderUser;
//返回数据 //返回数据
return $logistics->toArray(); return $logistics->toArray();
} }

View File

@ -17,6 +17,7 @@ namespace app\api\logic;
use app\common\logic\BaseLogic; use app\common\logic\BaseLogic;
use app\common\model\logistics\Courier; use app\common\model\logistics\Courier;
use app\common\model\logistics\Logistics; use app\common\model\logistics\Logistics;
use app\common\model\logistics\Merchant;
use app\common\model\logistics\Order; use app\common\model\logistics\Order;
use app\common\model\logistics\Product; use app\common\model\logistics\Product;
use app\common\model\logistics\LogisticsRecord; use app\common\model\logistics\LogisticsRecord;
@ -44,7 +45,7 @@ class LogisticsLogic extends BaseLogic
} }
$logistics = Logistics::where('courier_id', $params['courier_id']) $logistics = Logistics::where('courier_id', $params['courier_id'])
->where([$status]) ->where([$status])
->where('(order_sn LIKE "%'.$params['keywords'].'%" OR shop_phone LIKE "%'.$params['keywords'].'%" OR shop_name LIKE "%'.$params['keywords'].'%" OR user_phone LIKE "%'.$params['keywords'].'%" OR user_name LIKE "%'.$params['keywords'].'%")') ->where('(order_sn LIKE "%'.$params['keywords'].'%" OR shop_phone LIKE "%'.$params['keywords'].'%" OR shop_name LIKE "%'.$params['keywords'].'%" OR receiver_phone LIKE "%'.$params['keywords'].'%" OR receiver_name LIKE "%'.$params['keywords'].'%")')
->order('update_time desc') ->order('update_time desc')
->paginate([ ->paginate([
'list_rows'=> !empty($params['page_size'])? $params['page_size'] : 6, 'list_rows'=> !empty($params['page_size'])? $params['page_size'] : 6,
@ -75,7 +76,7 @@ class LogisticsLogic extends BaseLogic
*/ */
public static function cDetail($id):array { public static function cDetail($id):array {
//获取物流信息 //获取物流信息
$logistics = Logistics::field('id,order_id,order_sn,shop_name,shop_phone,shop_address,user_name,user_phone,user_address,shop_long,shop_lat,status,create_time') $logistics = Logistics::field('id,order_id,order_sn,shop_name,shop_user,shop_phone,shop_address,shop_long,shop_lat,receiver_name,receiver_phone,receiver_address,status,create_time')
->where('id', $id)->find(); ->where('id', $id)->find();
//获取商品信息 //获取商品信息
$product_count = 0; $product_count = 0;
@ -121,7 +122,7 @@ class LogisticsLogic extends BaseLogic
*/ */
public static function uDetail($params):array { public static function uDetail($params):array {
//获取物流信息 //获取物流信息
$logistics = Logistics::field('id,order_id,order_sn,courier_id,shop_name,shop_phone,shop_address,user_name,user_address,status,create_time') $logistics = Logistics::field('id,order_id,order_sn,courier_name,courier_phone,shop_name,shop_user,shop_phone,shop_address,receiver_name,receiver_phone,receiver_address,status,create_time')
->where('order_id', $params['order_id'])->where('order_sn',$params['order_sn'])->find(); ->where('order_id', $params['order_id'])->where('order_sn',$params['order_sn'])->find();
//获取物流记录 //获取物流记录
$records = LogisticsRecord::field('type,user_name,content,create_time') $records = LogisticsRecord::field('type,user_name,content,create_time')
@ -141,14 +142,9 @@ class LogisticsLogic extends BaseLogic
} }
unset($red_item['type'], $red_item['user_name']); unset($red_item['type'], $red_item['user_name']);
})->toArray(); })->toArray();
$courier = Courier::alias('u')
->field('u.nickname,a.phone')
->leftjoin('la_admin a', 'u.admin_id = a.id')
->where('u.id', $logistics['courier_id'])->find();
//返回数据 //返回数据
return[ return[
'logistics' => $logistics, 'logistics' => $logistics,
'courier' => $courier,
'record' => $records, 'record' => $records,
]; ];
} }
@ -163,50 +159,54 @@ class LogisticsLogic extends BaseLogic
$logistics = Logistics::where('order_id', $params['order_id'])->where('order_sn', $params['order_sn'])->find(); $logistics = Logistics::where('order_id', $params['order_id'])->where('order_sn', $params['order_sn'])->find();
if($logistics) return ['code'=>0, 'msg'=>'物流信息已存在']; if($logistics) return ['code'=>0, 'msg'=>'物流信息已存在'];
//查找订单信息 //查找订单信息
$order = Order::alias('s') $order = Order::alias('s')->where('order_id', $params['order_id'])->where('order_sn', $params['order_sn'])->find();
->leftjoin('eb_merchant m', 'm.mer_id = s.mer_id')
->field('s.real_name,s.user_phone,s.uid, s.user_address,s.user_address_code,s.logistics_code,m.mer_id,m.mer_name,m.real_name as mer_user_name,m.mer_phone,m.mer_address,m.long,m.lat')
->where('order_id', $params['order_id'])->where('order_sn', $params['order_sn'])->find();
if(empty($order['user_address_code'])) return ['code'=>1, 'msg'=>'用户地址信息错误']; if(empty($order['user_address_code'])) return ['code'=>1, 'msg'=>'用户地址信息错误'];
//查找商家信息
$shop = Merchant::field('mer_id,mer_name,real_name,mer_phone,mer_address,long,lat')->where('mer_id',$order['mer_id'])->find();
//匹配配送员 //匹配配送员
$courier = Courier::alias('u') $courier = Courier::alias('u')
->leftjoin('la_company c', 'c.id = u.company_id') ->leftjoin('la_company c', 'c.id = u.company_id')
->leftjoin('la_user a','c.user_id = a.id')
->field('a.id,a.nickname,a.mobile,c.company_name')
->where("CONCAT_WS(',',u.province,u.city,u.area,u.street,u.village,u.brigade) = '". $order['user_address_code']."'") ->where("CONCAT_WS(',',u.province,u.city,u.area,u.street,u.village,u.brigade) = '". $order['user_address_code']."'")
->where('u.is_contract', 1) ->where('u.is_contract', 1)
->where('u.is_captain',1) ->where('u.is_captain',1)
->value('c.user_id'); ->find();
//判断配送员是否存在 //判断配送员是否存在
if(!$courier) return ['code'=>0, 'msg'=>'配送员未匹配']; if(!$courier) return ['code'=>0, 'msg'=>'配送员未匹配'];
//获取配送员信息
$courierInfo = Courier::alias('u')
->field('u.id,u.nickname,a.phone')
->leftjoin('la_admin a', 'u.admin_id = a.id')
->where('u.id', $courier)->find();
//获取下单用户信息 //获取下单用户信息
$orderUser = User::field('nickname,phone')->where('uid', $order['uid'])->find(); $orderUser = User::field('uid,nickname,phone')->where('uid', $order['uid'])->find();
//写入数据 //写入数据
Logistics::startTrans(); Logistics::startTrans();
try { try {
$lst = Logistics::create([ $lst = Logistics::create([
'order_id' => $params['order_id'], 'order_id' => $params['order_id'],
'order_sn' => $params['order_sn'], 'order_sn' => $params['order_sn'],
'courier_id' => $courier,
'shop_id' => $order['mer_id'],
'shop_name' => $order['mer_name'],
'shop_user' => $order['mer_user_name'],
'shop_phone' => $order['mer_phone'],
'shop_address' => $order['mer_address'],
'shop_long' => $order['long'],
'shop_lat' => $order['lat'],
'user_id' => $order['uid'],
'user_name' => $order['real_name'],
'user_phone' => $order['user_phone'],
'user_address' => $order['user_address'],
'is_notice' => 0,
'user_take_code' => '',
'status' => 0, 'status' => 0,
'user_id' => $orderUser['uid'],
'user_name' => $orderUser['nickname'],
'user_phone' => $orderUser['phone'],
'courier_id' => $courier['id'],
'courier_name' => $courier['nickname'],
'courier_phone' => $courier['mobile'],
'courier_company' => $courier['company_name'],
'shop_id' => $shop['mer_id'],
'shop_name' => $shop['mer_name'],
'shop_user' => $shop['real_name'],
'shop_phone' => $shop['mer_phone'],
'shop_address' => $shop['mer_address'],
'shop_long' => $shop['long'],
'shop_lat' => $shop['lat'],
'receiver_name' => $order['real_name'],
'receiver_phone' => $order['user_phone'],
'receiver_address' => $order['user_address'],
'receiver_take_code' => 0,
'create_time' => time(), 'create_time' => time(),
'update_time' => time(), 'update_time' => time(),
'delete_time' => 0,
'qh_time' => 0,
'ps_time' => 0,
'qx_time' => 0,
]); ]);
LogisticsRecord::create([ LogisticsRecord::create([
'lst_id' => $lst->id, 'lst_id' => $lst->id,
@ -217,7 +217,7 @@ class LogisticsLogic extends BaseLogic
'create_time' => time(), 'create_time' => time(),
]); ]);
Logistics::commit(); Logistics::commit();
return ['code'=>1, 'msg'=>'操作成功','data'=>$courierInfo->toArray()]; return ['code'=>1, 'msg'=>'操作成功','data'=>['nickname'=>$courier['nickname'],'phone'=>$courier['mobile']]];
} catch (\Exception $e) { } catch (\Exception $e) {
Logistics::rollback(); Logistics::rollback();
return ['code'=>0, 'msg'=>$e->getMessage()]; return ['code'=>0, 'msg'=>$e->getMessage()];
@ -244,8 +244,6 @@ class LogisticsLogic extends BaseLogic
case 3: case 3:
return ['code'=>0, 'msg'=>'该订单已经被取消']; return ['code'=>0, 'msg'=>'该订单已经被取消'];
} }
//获取配送员信息
$courier = Courier::field('nickname,mobile')->where('id', $logistics['courier_id'])->find();
//更改物流信息状态 //更改物流信息状态
Logistics::startTrans(); Logistics::startTrans();
try { try {
@ -255,13 +253,13 @@ class LogisticsLogic extends BaseLogic
'status' => 1, 'status' => 1,
'update_time' => time(), 'update_time' => time(),
'qh_time' => time(), 'qh_time' => time(),
'user_take_code' => $order['logistics_code'] 'receiver_take_code' => $order['logistics_code']
]); ]);
LogisticsRecord::create([ LogisticsRecord::create([
'lst_id' => $logistics['id'], 'lst_id' => $logistics['id'],
'type' => 2, 'type' => 2,
'user_name' => $courier['nickname'], 'user_name' => $logistics['courier_name'],
'user_phone' => $courier['mobile'], 'user_phone' => $logistics['courier_phone'],
'content' => '已提取商品', 'content' => '已提取商品',
'create_time' => time(), 'create_time' => time(),
]); ]);
@ -295,9 +293,7 @@ class LogisticsLogic extends BaseLogic
return ['code'=>0, 'msg'=>'订单已被取消']; return ['code'=>0, 'msg'=>'订单已被取消'];
} }
//验证取件码 //验证取件码
if($logistics['user_take_code'] !== $params['take_code']) return ['code'=>0, 'msg'=>'取件码错误']; if($logistics['receiver_take_code'] !== $params['take_code']) return ['code'=>0, 'msg'=>'取件码错误'];
//获取配送员信息
$courier = Courier::field('nickname,mobile')->where('id', $logistics['courier_id'])->find();
//更改物流信息状态 //更改物流信息状态
Logistics::startTrans(); Logistics::startTrans();
try { try {
@ -309,8 +305,8 @@ class LogisticsLogic extends BaseLogic
LogisticsRecord::create([ LogisticsRecord::create([
'lst_id' => $logistics['id'], 'lst_id' => $logistics['id'],
'type' => 2, 'type' => 2,
'user_name' => $courier['nickname'], 'user_name' => $logistics['courier_name'],
'user_phone' => $courier['mobile'], 'user_phone' => $logistics['courier_phone'],
'content' => '已完成配送', 'content' => '已完成配送',
'create_time' => time(), 'create_time' => time(),
]); ]);

View File

@ -20,16 +20,12 @@ use app\common\model\BaseModel;
/** /**
* Logistics模型 * Courier模型
* Class Logistics * Class Courier
* @package app\common\model * @package app\common\model
*/ */
class Courier extends BaseModel class Courier extends BaseModel
{ {
protected $connection = 'mysql3'; protected $connection = 'mysql3';
protected $name = 'la_user'; protected $name = 'la_user';
} }

View File

@ -0,0 +1,33 @@
<?php
// +----------------------------------------------------------------------
// | likeadmin快速开发前后端分离管理后台PHP版
// +----------------------------------------------------------------------
// | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
// | 开源版本可自由商用可去除界面版权logo
// | gitee下载https://gitee.com/likeshop_gitee/likeadmin
// | github下载https://github.com/likeshop-github/likeadmin
// | 访问官网https://www.likeadmin.cn
// | likeadmin团队 版权所有 拥有最终解释权
// +----------------------------------------------------------------------
// | author: likeadminTeam
// +----------------------------------------------------------------------
namespace app\common\model\logistics;
use app\common\model\BaseModel;
/**
* Merchant模型
* Class Merchant
* @package app\common\model
*/
class Merchant extends BaseModel
{
protected $connection = 'mysql2';
protected $name = 'eb_merchant';
}

View File

@ -20,8 +20,8 @@ use app\common\model\BaseModel;
/** /**
* Logistics模型 * Order模型
* Class Logistics * Class Order
* @package app\common\model * @package app\common\model
*/ */
class Order extends BaseModel class Order extends BaseModel
@ -30,6 +30,4 @@ class Order extends BaseModel
protected $connection = 'mysql2'; protected $connection = 'mysql2';
protected $name = 'eb_store_order'; protected $name = 'eb_store_order';
} }

View File

@ -20,8 +20,8 @@ use app\common\model\BaseModel;
/** /**
* Logistics模型 * Product模型
* Class Logistics * Class Product
* @package app\common\model * @package app\common\model
*/ */
class Product extends BaseModel class Product extends BaseModel
@ -30,6 +30,4 @@ class Product extends BaseModel
protected $connection = 'mysql2'; protected $connection = 'mysql2';
protected $name = 'eb_store_order_product'; protected $name = 'eb_store_order_product';
} }

View File

@ -20,8 +20,8 @@ use app\common\model\BaseModel;
/** /**
* Logistics模型 * User模型
* Class Logistics * Class User
* @package app\common\model * @package app\common\model
*/ */
class User extends BaseModel class User extends BaseModel
@ -30,6 +30,4 @@ class User extends BaseModel
protected $connection = 'mysql2'; protected $connection = 'mysql2';
protected $name = 'eb_user'; protected $name = 'eb_user';
} }