Commit 8d5dcd88 by liyijie

fix: query_association_chain问题修复

parent 5357019f
...@@ -234,7 +234,11 @@ class SimpleController::BaseController < ::InheritedResources::Base ...@@ -234,7 +234,11 @@ class SimpleController::BaseController < ::InheritedResources::Base
if self.class.instance_variable_get(:@ransack_off) || params[:q].blank? if self.class.instance_variable_get(:@ransack_off) || params[:q].blank?
policy_association_chain policy_association_chain
else else
association = Array(params[:q][:scopes]).recude(policy_association_chain) { |_association, _scope| _association.send(_scope) } if params[:q][:scopes].present? if params[:q][:scopes].present?
association = Array(params[:q][:scopes]).recude(policy_association_chain) { |_association, _scope| _association.send(_scope) }
else
association = policy_association_chain
end
association = association.ransack(params[:q].except(:scopes)).result association = association.ransack(params[:q].except(:scopes)).result
end end
end end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment