From d826c9777af73f0c90758054a393454c70724fe3 Mon Sep 17 00:00:00 2001 From: liu <1873441552@qq.com> Date: Tue, 12 Mar 2024 09:50:33 +0800 Subject: [PATCH] =?UTF-8?q?=E5=95=86=E5=93=81=E5=AF=BC=E5=87=BAexcel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../store/product/ProductRepository.php | 79 ++++++++++++++++++- app/controller/admin/store/StoreProduct.php | 22 ++++++ route/admin/product.php | 4 + 3 files changed, 104 insertions(+), 1 deletion(-) diff --git a/app/common/repositories/store/product/ProductRepository.php b/app/common/repositories/store/product/ProductRepository.php index 16c77d7d..7c8a7fe5 100755 --- a/app/common/repositories/store/product/ProductRepository.php +++ b/app/common/repositories/store/product/ProductRepository.php @@ -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 diff --git a/app/controller/admin/store/StoreProduct.php b/app/controller/admin/store/StoreProduct.php index eea39459..da4612ae 100755 --- a/app/controller/admin/store/StoreProduct.php +++ b/app/controller/admin/store/StoreProduct.php @@ -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 diff --git a/route/admin/product.php b/route/admin/product.php index 097707f7..5f7f3583 100755 --- a/route/admin/product.php +++ b/route/admin/product.php @@ -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,