refactor(store): 移除创建预订订单时的员工 ID 参数
- 注释掉了 BeforehandOrderController 中获取 store_staff_id 的代码行 - 这个改动可能是为了调整预订订单创建流程,不再需要员工 ID
This commit is contained in:
parent
97697e4882
commit
6b44bc45ed
@ -39,7 +39,7 @@ class BeforehandOrderController extends BaseAdminController
|
|||||||
{
|
{
|
||||||
$params = $this->request->get();
|
$params = $this->request->get();
|
||||||
$params['store_id'] = $this->request->adminInfo['store_id'] ?? 0;
|
$params['store_id'] = $this->request->adminInfo['store_id'] ?? 0;
|
||||||
$params['store_staff_id'] = $this->request->adminInfo['admin_id'] ?? 0;
|
// $params['store_staff_id'] = $this->request->adminInfo['admin_id'] ?? 0;
|
||||||
$this->request->setGet($params);
|
$this->request->setGet($params);
|
||||||
return $this->dataLists(new BeforehandOrderLists());
|
return $this->dataLists(new BeforehandOrderLists());
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user