97 lines
3.5 KiB
PHP
Executable File
97 lines
3.5 KiB
PHP
Executable File
<?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\adminapi\lists\logistics;
|
||
|
||
|
||
use app\adminapi\lists\BaseAdminDataLists;
|
||
use app\common\model\logistics\Courier;
|
||
use app\common\model\logistics\Logistics;
|
||
use app\common\lists\ListsSearchInterface;
|
||
use app\common\model\logistics\Product;
|
||
use think\db\Query;
|
||
|
||
|
||
/**
|
||
* Logistics列表
|
||
* Class LogisticsLists
|
||
* @package app\adminapi\lists
|
||
*/
|
||
class LogisticsLists extends BaseAdminDataLists implements ListsSearchInterface
|
||
{
|
||
|
||
|
||
/**
|
||
* @notes 设置搜索条件
|
||
* @return \string[][]
|
||
* @author likeadmin
|
||
* @date 2023/08/10 15:41
|
||
*/
|
||
public function setSearch(): array
|
||
{
|
||
return [
|
||
'%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'],
|
||
];
|
||
}
|
||
|
||
/**
|
||
* @notes 获取列表
|
||
* @return array
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
* @author likeadmin
|
||
* @date 2023/08/10 15:41
|
||
*/
|
||
public function lists
|
||
(): array
|
||
{
|
||
return Logistics::where($this->searchWhere)
|
||
->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)
|
||
->limit($this->limitOffset, $this->limitLength)
|
||
->order(['id' => 'desc'])
|
||
->select()
|
||
->each(function ($item){
|
||
$item['status_name'] = $item->status_name;
|
||
$product_count = 0;
|
||
//获取产品信息
|
||
$lst_item['products'] = Product::field('product_num,cart_info')->where('order_id', $item['order_id'])->select()->each(function($pro_item) use(&$product_count){
|
||
$pro_item['cart_info'] = json_decode($pro_item['cart_info'], true);
|
||
$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;
|
||
})
|
||
->toArray();
|
||
}
|
||
|
||
|
||
/**
|
||
* @notes 获取数量
|
||
* @return int
|
||
* @author likeadmin
|
||
* @date 2023/08/10 15:41
|
||
*/
|
||
public function count(): int
|
||
{
|
||
return Logistics::where($this->searchWhere)->count();
|
||
}
|
||
|
||
} |