|
|
@@ -1249,13 +1249,17 @@ class TradeOrderService extends BaseService
|
|
|
$updateData['refund_payment'] = trim($params['refund_payment']);
|
|
|
}
|
|
|
|
|
|
+ if (isset($params['refund_status'])) {
|
|
|
+ $updateData['refund_status'] = intval($params['refund_status']);
|
|
|
+ }
|
|
|
+
|
|
|
if (isset($params['exception_remark'])) {
|
|
|
$updateData['exception_remark'] = trim($params['exception_remark']);
|
|
|
}
|
|
|
if (isset($params['exception_status'])) {
|
|
|
$updateData['exception_status'] = intval($params['exception_status']);
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
if (!$this->model->where($where)->update($updateData)) {
|
|
|
$this->model->rollBack();
|
|
|
$this->error = '3023';
|