6
0
Fork 0

调整漏发的售后后台审核

release
vine_liutk 2021-12-28 10:02:14 +08:00
parent 1b3cf897f1
commit 5ba6a166ae
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class AfterSaleVerify extends Form implements LazyRenderable
if ($amount > $afterSale->orderProduct->total_amount) {
throw new BizException('退款金额不能大于商品实付金额');
}
$afterSaleService->verify($afterSale, $input['remarks3'], (int) $input['amount']);
$afterSaleService->verify($afterSale, $input['remarks3'], (int) Arr::get($input, 'amount', 0));
} elseif ($input['state'] == 1) {//需要补充资料
$afterSaleService->backApply($afterSale, $input['remarks1']);
}