Merge pull request '修复状态' (#140) from dev into master
Reviewed-on: #140
This commit is contained in:
commit
42b442bc51
@ -1746,6 +1746,7 @@ 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);
|
||||
@ -1795,7 +1796,7 @@ class ProductRepository extends BaseRepository
|
||||
$this->dao->updates($id, $data);
|
||||
Queue(ChangeSpuStatusJob::class, ['id' => $id, 'product_type' => $product_type]);
|
||||
event('product.status', compact('id', 'data'));
|
||||
event('product.sell', ['product_id' => $id]);
|
||||
event('product.sell', ['product_id' => $id,'status'=>$data['status']]);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user