调整商品审核 的错误
This commit is contained in:
parent
2015422c5d
commit
62d7afee3c
@ -21,6 +21,8 @@ use app\common\dao\store\StoreActivityOrderDao;
|
|||||||
use app\common\model\store\order\StoreGroupOrder;
|
use app\common\model\store\order\StoreGroupOrder;
|
||||||
use app\common\model\store\order\StoreOrder;
|
use app\common\model\store\order\StoreOrder;
|
||||||
use app\common\model\store\order\StoreRefundOrder;
|
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\model\system\merchant\FinancialRecord;
|
||||||
use app\common\repositories\BaseRepository;
|
use app\common\repositories\BaseRepository;
|
||||||
use app\common\repositories\store\product\ProductRepository;
|
use app\common\repositories\store\product\ProductRepository;
|
||||||
@ -1186,6 +1188,12 @@ class StoreRefundOrderRepository extends BaseRepository
|
|||||||
|
|
||||||
(new CommissionDao())->refundByOrder($refundOrder);
|
(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([
|
app()->make(FinancialRecordRepository::class)->dec([
|
||||||
'order_id' => $refundOrder->refund_order_id,
|
'order_id' => $refundOrder->refund_order_id,
|
||||||
'order_sn' => $refundOrder->refund_order_sn,
|
'order_sn' => $refundOrder->refund_order_sn,
|
||||||
|
@ -1761,7 +1761,7 @@ class ProductRepository extends BaseRepository
|
|||||||
]
|
]
|
||||||
], $product['mer_id']);
|
], $product['mer_id']);
|
||||||
app()->make(SpuRepository::class)->changeStatus($id, $product->product_type);
|
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);
|
$this->switchShow($id, $status, 'is_used', 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user