删除halt

This commit is contained in:
mkm 2024-01-28 17:18:57 +08:00
parent f0d95a4d94
commit c015a8f00c
2 changed files with 0 additions and 3 deletions

View File

@ -1746,7 +1746,6 @@ class ProductRepository extends BaseRepository
*/
public function switchStatus($id, $data)
{
halt($data);
$product = $this->getSearch([])->find($id);
if(!$product) throw new ValidateException('商品不存在');
$this->dao->update($id, $data);

View File

@ -32,8 +32,6 @@ class FinancialRecordTransfer extends BaseController
public function lst()
{
halt(1);
[$page, $limit] = $this->getPage();
$where = $this->request->params(['keyword', 'date', 'mer_id']);
$merId = $this->request->merId();