mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-27 01:43:22 +00:00
Merge pull request #4925 from luisramos0/finders
Adapt remaining AR finders to rails 4
This commit is contained in:
@@ -51,7 +51,7 @@ module Spree
|
||||
end
|
||||
|
||||
def load_order
|
||||
@order = Order.find_by_number!(params[:order_id], include: :adjustments)
|
||||
@order = Order.find_by!({ number: params[:order_id] }, include: :adjustments)
|
||||
end
|
||||
|
||||
def check_authorization
|
||||
|
||||
@@ -178,7 +178,7 @@ module Spree
|
||||
return nil if parent_data.blank?
|
||||
|
||||
@parent ||= parent_data[:model_class].
|
||||
public_send("find_by_#{parent_data[:find_by]}", params["#{model_name}_id"])
|
||||
public_send("find_by", parent_data[:find_by] => params["#{model_name}_id"])
|
||||
instance_variable_set("@#{model_name}", @parent)
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user