|
|
@@ -287,13 +287,13 @@ class RefundOrderClass extends BaseClass
|
|
|
public static function rejectRefund($refund, $rejectReason)
|
|
|
{
|
|
|
if ($refund->status == 1) {
|
|
|
- util::fail('售后已通过');
|
|
|
+ util::fail('已通过');
|
|
|
}
|
|
|
if ($refund->status == 2) {
|
|
|
- util::fail('售后已驳回');
|
|
|
+ util::fail('已驳回');
|
|
|
}
|
|
|
if ($refund->status == 3) {
|
|
|
- util::fail('售后已取消');
|
|
|
+ util::fail('已取消');
|
|
|
}
|
|
|
$refund->status = 2;
|
|
|
$refund->rejectReason = $rejectReason;
|