|
|
@@ -40,7 +40,7 @@ class CgRefundService extends BaseService
|
|
|
$post['cgId'] = $cg->id;
|
|
|
$refundPrice = $post['price'] ?? 0;
|
|
|
if (is_numeric($refundPrice) == false || $refundPrice < 0) {
|
|
|
- util::fail('退款金额有问题');
|
|
|
+ util::fail('退款金额有问题。');
|
|
|
}
|
|
|
$post['refundPrice'] = $refundPrice;
|
|
|
//创建退款单
|
|
|
@@ -119,7 +119,7 @@ class CgRefundService extends BaseService
|
|
|
$totalFee = $cg->realPrice * 100;
|
|
|
$refundFee = $refundOrder['refundPrice'] ?? 0;
|
|
|
if (is_numeric($refundFee) == false || $refundFee <= 0) {
|
|
|
- util::fail('退款金额有问题');
|
|
|
+ util::fail('退款金额有问题!');
|
|
|
}
|
|
|
|
|
|
$merchantExt = WxOpenClass::getWxInfo();
|