修改默认查询店铺数据

This commit is contained in:
liu 2024-06-14 17:44:59 +08:00
parent 449ecc0508
commit 46ba3cb31f
4 changed files with 17 additions and 6 deletions

View File

@ -12,7 +12,7 @@ class ProductController extends BaseApiController{
*/
public function lists(){
return $this->dataLists(new ProductLists());
return $this->dataLists(new ProductLists(),1);
}
/**

View File

@ -88,7 +88,8 @@ class ProductLists extends BaseAdminDataLists implements ListsSearchInterface,Li
}
}
if(!$found){
$this->searchWhere[]=['store_id','=',5];
$store_id = DictType::where('type','store')->value('remark')??5;
$this->searchWhere[]=['store_id','=',$store_id];
}
$class_all=$this->request->get('class_all');
$where=[];
@ -159,7 +160,8 @@ class ProductLists extends BaseAdminDataLists implements ListsSearchInterface,Li
}
}
if(!$found){
$this->searchWhere[]=['store_id','=',5];
$store_id = DictType::where('type','store')->value('remark')??5;
$this->searchWhere[]=['store_id','=',$store_id];
}
$class_all=$this->request->get('class_all');
$where=[];

View File

@ -46,7 +46,7 @@ class BaseLikeController extends BaseController
* @author 令狐冲
* @date 2021/7/8 00:40
*/
protected function dataLists(BaseDataLists $lists = null)
protected function dataLists(BaseDataLists $lists = null,$remark = 0)
{
//列表类和控制器一一对应,"app/应用/controller/控制器的方法" =》"app\应用\lists\"目录下
//(例如:"app/admin/controller/auth/AdminController.php的lists()方法" =》 "app/admin/lists/auth/AminLists.php")
@ -55,7 +55,7 @@ class BaseLikeController extends BaseController
// $listName = str_replace('.', '\\', App::getNamespace() . '\\lists\\' . $this->request->controller() . ucwords($this->request->action()));
// $lists = invoke($listName);
}
return JsonService::dataLists($lists);
return JsonService::dataLists($lists,$remark);
}

View File

@ -4,10 +4,13 @@
namespace app\common\service;
use app\api\logic\store\StoreLogic;
use app\common\enum\ExportEnum;
use app\common\lists\BaseDataLists;
use app\common\lists\ListsExcelInterface;
use app\common\lists\ListsExtendInterface;
use app\common\model\dict\DictType;
use app\common\model\system_store\SystemStore;
use support\Response;
use support\exception\BusinessException;
@ -90,7 +93,7 @@ class JsonService
* @author 令狐冲
* @date 2021/7/28 11:15
*/
public static function dataLists(BaseDataLists $lists)
public static function dataLists(BaseDataLists $lists,$remark)
{
//获取导出信息
if ($lists->export == ExportEnum::INFO && $lists instanceof ListsExcelInterface) {
@ -109,6 +112,12 @@ class JsonService
'page_no' => $lists->pageNo,
'page_size' => $lists->pageSize,
];
$store_id = DictType::where('type','store')->value('remark')??5;
if($remark){
$data['store'] = StoreLogic::search([
'id' => $store_id
]);
}
$data['extend'] = [];
if ($lists instanceof ListsExtendInterface) {
$data['extend'] = $lists->extend();