diff --git a/app/common/repositories/store/product/ProductRepository.php b/app/common/repositories/store/product/ProductRepository.php index ae51c6b4..98f404fc 100755 --- a/app/common/repositories/store/product/ProductRepository.php +++ b/app/common/repositories/store/product/ProductRepository.php @@ -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); diff --git a/app/controller/admin/system/merchant/FinancialRecordTransfer.php b/app/controller/admin/system/merchant/FinancialRecordTransfer.php index 5eb89753..dea9bc37 100755 --- a/app/controller/admin/system/merchant/FinancialRecordTransfer.php +++ b/app/controller/admin/system/merchant/FinancialRecordTransfer.php @@ -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();