order->hasOneRefundApply && $this->order->hasOneRefundApply->refund_type == RefundApply::REFUND_TYPE_EXCHANGE_GOODS) { return '已换货'; } return '已退款'; } public function enable() { //2018-8-30 租赁订单不能退款 if ($this->order->plugin_id == 40) { return false; } return $this->order->isRefunded(); } }