#encoding module RailsAdmin module Config module Actions class AuditOrderRefund < RailsAdmin::Config::Actions::Base register_instance_option :visible? do authorized? end register_instance_option :member do true end register_instance_option :link_icon do 'icon-thumbs-up' end register_instance_option :pjax? do false end register_instance_option :controller do Proc.new do require 'rest-client' order_refund = OrderRefund.where("id = ? and status=?",@object.id,0).first n = "此状态不支持操作" if not order_refund.blank? n = "已成功审批" url = "#{CONFIG_FILE["api_host"]}/railsadmin/order/refund/#{@object.id}" begin ret = RestClient.get url, {} #per_page: 5 rescue Exception => e n = "审批失败!" end end redirect_to :back, notice: "#{n}" end end end end end end