|
|
@@ -420,7 +420,7 @@ class StoreOrder extends BaseController
|
|
|
return app('json')->fail('不是服务中心不能进行核销');
|
|
|
}
|
|
|
foreach ($order['orderProduct'] as $k => $v){
|
|
|
- $v['verify_num'] = StoreCart::where('product_id',$v['product_id'])->where('cart_id',$v['cart_id'])->value('verify_num');
|
|
|
+ $v['verify_num'] = \app\common\model\store\order\StoreCart::where('product_id',$v['product_id'])->where('cart_id',$v['cart_id'])->value('verify_num');
|
|
|
}
|
|
|
// $this->repository->verifyPartOrder($order, $data);
|
|
|
return app('json')->success($order);
|