This commit is contained in:
mkm 2024-01-26 13:52:42 +08:00
parent 4c09bdee16
commit b05cf35972

View File

@ -1728,9 +1728,9 @@ class ProductRepository extends BaseRepository
if ($this->dao->updates($id, [$field => $status]) === false) {
throw new \Exception('商品操作出错', 500);
}
event('product.sell', ['product_id' => $productIds]);
event('product.sell', ['product_id' => $productIds,'status'=>$status]);
Db::commit();
Queue::push(ChangeSpuStatusJob::class, ['id' => $id, 'product_type' => $product_type]);
Queue::push(ChangeSpuStatusJob::class, ['id' => $productIds, 'product_type' => $product_type]);
} catch (\Exception $e) {
Db::rollback();
throw new \Exception('商品操作出错', $e->getCode());