Merge branch 'dev' of https://gitea.lihaink.cn/mkm/shop-php into dev
This commit is contained in:
commit
c13dbd0145
@ -83,7 +83,7 @@ class ProductRepository extends BaseRepository
|
||||
['svip_price_type', 0],
|
||||
['params', []],
|
||||
];
|
||||
protected $admin_filed = 'Product.product_id,Product.mer_id,brand_id,spec_type,unit_name,mer_status,rate,reply_count,store_info,cate_id,Product.image,slider_image,Product.store_name,Product.keyword,Product.sort,U.rank,Product.is_show,Product.sales,Product.price,extension_type,refusal,cost,ot_price,stock,is_gift_bag,Product.care_count,Product.status,is_used,Product.create_time,Product.product_type,old_product_id,star,ficti,integral_total,integral_price_total,sys_labels,param_temp_id,mer_svip_status,svip_price,svip_price_type,update_time,source_product_id';
|
||||
protected $admin_filed = 'Product.product_id,Product.mer_id,brand_id,spec_type,unit_name,mer_status,rate,reply_count,store_info,cate_id,Product.image,slider_image,Product.store_name,Product.keyword,Product.sort,U.rank,Product.is_show,Product.sales,Product.price,extension_type,refusal,cost,ot_price,stock,is_gift_bag,Product.care_count,Product.status,is_used,Product.create_time,Product.product_type,old_product_id,star,ficti,integral_total,integral_price_total,sys_labels,param_temp_id,mer_svip_status,svip_price,svip_price_type,Product.update_time,source_product_id';
|
||||
protected $filed = 'Product.bar_code,Product.product_id,Product.mer_id,brand_id,unit_name,spec_type,mer_status,rate,reply_count,store_info,cate_id,Product.image,slider_image,Product.store_name,Product.keyword,Product.sort,Product.is_show,Product.sales,Product.price,extension_type,refusal,cost,ot_price,stock,is_gift_bag,Product.care_count,Product.status,is_used,Product.create_time,Product.product_type,old_product_id,integral_total,integral_price_total,mer_labels,Product.is_good,Product.is_del,type,param_temp_id,mer_svip_status,svip_price,svip_price_type,update_time,source_product_id';
|
||||
|
||||
const NOTIC_MSG = [
|
||||
@ -1018,6 +1018,83 @@ class ProductRepository extends BaseRepository
|
||||
return compact('count', 'list');
|
||||
}
|
||||
|
||||
|
||||
public function getGoodsList(?int $merId, array $where, int $page, int $limit)
|
||||
{
|
||||
$query = $this->dao->search($merId, $where)->with([
|
||||
'merCateId.category',//商户分类
|
||||
'storeCategory',//平台分类
|
||||
'brand',//商品分类
|
||||
'merchant',
|
||||
'attrValue'
|
||||
]);
|
||||
$count = $query->count();
|
||||
$data = $query->page($page, $limit)->setOption('field', [])->field($this->admin_filed)->select();
|
||||
$data->append(['us_status']);
|
||||
$list = hasMany(
|
||||
$data,
|
||||
'sys_labels',
|
||||
ProductLabel::class,
|
||||
'product_label_id',
|
||||
'sys_labels',
|
||||
['status' => 1],
|
||||
'product_label_id,product_label_id id,label_name name'
|
||||
);
|
||||
|
||||
|
||||
$export = [];
|
||||
foreach ($list as $item) {
|
||||
if($where['type'] == 7 || $where['type'] == 6 ){
|
||||
$mer_status = '平台关闭';
|
||||
}elseif ($where['type'] == 2){
|
||||
if(empty($item['is_used'])){
|
||||
$mer_status = '平台关闭';
|
||||
}else{
|
||||
$mer_status = '下架';
|
||||
}
|
||||
}else{
|
||||
if(empty($item['is_used'])){
|
||||
$mer_status = '平台关闭';
|
||||
}else{
|
||||
$mer_status = '上架显示'; //商品状态 1上架显示 0平台关闭
|
||||
}
|
||||
}
|
||||
if(isset($item['merchant'])&& !empty($item['merchant'])){
|
||||
$is_trader = $item['merchant']['is_trader']?'自营':'非自营';
|
||||
$mer_name = $item['merchant']['mer_name']??'';
|
||||
}else{
|
||||
$is_trader ='';
|
||||
$mer_name = '';
|
||||
}
|
||||
$export[] = [
|
||||
$item['product_id'],
|
||||
$item['store_name'],
|
||||
$mer_name,
|
||||
$is_trader,
|
||||
$item['price'],
|
||||
$item['attrValue'][0]['procure_price'],
|
||||
$item['sales'],//销量
|
||||
$item['stock'],//库存
|
||||
$item['star'],//级别
|
||||
$item['sort'],//排序
|
||||
$mer_status,
|
||||
isset($item['sys_labels'])?$item['sys_labels'][0]['name']:'',//标签
|
||||
$item['is_used'] ? '显示' : '隐藏',//显示
|
||||
$item['update_time'],//更新时间
|
||||
$item['create_time'],//创建时间
|
||||
];
|
||||
}
|
||||
$header = ['商品ID','商品名称','商户名称', '商户类别', '商品售价',
|
||||
'批发价','销量','库存','推荐级别','排序', '商品状态','标签','是否显示', '创建时间', '更新时间',
|
||||
];
|
||||
$filename = '商品列表_' . date('YmdHis');
|
||||
$title = ['商品列表_', '导出时间:' . date('Y-m-d H:i:s', time())];
|
||||
$foot = '';
|
||||
return compact('count', 'header', 'title', 'export', 'foot', 'filename');
|
||||
}
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* TODO 平台商品列表
|
||||
* @Author:Qinii
|
||||
|
@ -62,6 +62,28 @@ class StoreProduct extends BaseController
|
||||
return app('json')->success($this->repository->getAdminList($merId, $where, $page, $limit));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function excel()
|
||||
{
|
||||
[$page, $limit] = $this->getPage();
|
||||
$where = $this->request->params(['cate_id', 'keyword', ['type', 1], 'mer_cate_id', 'pid', 'store_name', 'is_trader', 'us_status', 'product_id', 'star', 'sys_labels', 'hot_type', 'svip_price_type']);
|
||||
$mer_id = $this->request->param('mer_id', '');
|
||||
$merId = $mer_id ? $mer_id : null;
|
||||
$where['is_gift_bag'] = 0;
|
||||
$_where = $this->repository->switchType($where['type'], null, 0);
|
||||
unset($_where['product_type']);
|
||||
unset($_where['star']);
|
||||
$where['order'] = "check";//标识后台查询更新时间倒叙
|
||||
$where = array_merge($where, $_where);
|
||||
|
||||
$data = $this->repository->getGoodsList($merId, $where, $page, $limit);
|
||||
return app('json')->success($data);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* @Author:Qinii
|
||||
* @Date: 2020/5/18
|
||||
|
@ -179,6 +179,10 @@ Route::group(function () {
|
||||
Route::get('lst', '/lst')->name('systemStoreProductLst')->option([
|
||||
'_alias' => '列表',
|
||||
]);
|
||||
Route::get('excel', '/excel')->option([
|
||||
'_alias' => '导出',
|
||||
]);
|
||||
|
||||
Route::get('list', '/lst')->option([
|
||||
'_alias' => '',
|
||||
'_auth' => false,
|
||||
|
Loading…
x
Reference in New Issue
Block a user