调整商品审核 的错误

This commit is contained in:
luofei 2024-01-30 17:49:15 +08:00
parent 2015422c5d
commit 62d7afee3c
2 changed files with 9 additions and 1 deletions

View File

@ -21,6 +21,8 @@ use app\common\dao\store\StoreActivityOrderDao;
use app\common\model\store\order\StoreGroupOrder;
use app\common\model\store\order\StoreOrder;
use app\common\model\store\order\StoreRefundOrder;
use app\common\model\store\product\CloudProduct;
use app\common\model\store\StoreActivityOrderProduct;
use app\common\model\system\merchant\FinancialRecord;
use app\common\repositories\BaseRepository;
use app\common\repositories\store\product\ProductRepository;
@ -1186,6 +1188,12 @@ class StoreRefundOrderRepository extends BaseRepository
(new CommissionDao())->refundByOrder($refundOrder);
$productIds = CloudProduct::where('activity_id', 2)->column('product_id');
StoreActivityOrderProduct::where('user_id', $refundOrder->order['uid'])
->whereIn('product_id', $productIds)
->whereIn('activity_id', 2)
->update(['status' => 0]);
app()->make(FinancialRecordRepository::class)->dec([
'order_id' => $refundOrder->refund_order_id,
'order_sn' => $refundOrder->refund_order_sn,

View File

@ -1761,7 +1761,7 @@ class ProductRepository extends BaseRepository
]
], $product['mer_id']);
app()->make(SpuRepository::class)->changeStatus($id, $product->product_type);
event('product.sell', ['product_id' => [$id,'status'=>$status]]);
event('product.sell', ['product_id' => [$id], 'status'=>$status]);
$this->switchShow($id, $status, 'is_used', 0);
}