1

我正在寻找解决方案,如何按两个关联级别深且有条件的属性进行排序。

我的订单模型必须与 Shop 模型或 Warehouse 模型相关联,这两种模型都与具有名称的国家/地区相关联。

我的目标是:

确定订单范围并按国家/地区名称排序。

结果必须是 ActiveRelation 对象

主要目标是将此范围用于 MetaSearch gem 以获取视图助手 sort_link

class Order < ActiveRecord::Base

  belongs_to :shop
  belongs_to :warehouse

  validate :shop_id, :presence => true,      :if => "warehouse_id.nil?"
  validate :warehouse_id, :presence => true, :if => "shop_id.nil?" 

  #the case with shop_id.present? && warehouse_id.present? does not exist 

  scope :sort_by_country_name, ???

end

class Shop < ActiveRecord::Base
  belongs_to :country
end

class Warehouse < ActiveRecord::Base
  belongs_to :country
end

Country.coulumn_names => [:id, :name, ...]

实际上我不知道这是否可能,所以我很感激任何建议。

谢谢

4

1 回答 1

2

你可以这样写,虽然我没有尝试过:

scope :sort_by_warehouse_country_name, joins(:warehouse).order('warehouse.country_name DESC')

这是假设你有

delegate :name, to: :country, prefix: true

在仓库类中。

编辑:

由于您想获取仓库国家或商店国家,因此您需要在选择查询中使用逻辑来选择国家名称的第一个非空条目。PostgreSQL 和 MySQL 支持函数coalesce,它返回第一个非空列。您应该可以像这样使用它:(同样,虽然没有尝试过)

def self.sort_by_country_name
    Order.select("COALESCE(warehouse.country_name, shop.country_name) as country_name").joins(:warehouse, :shop).order("country_name DESC")
end
于 2012-04-25T07:40:22.157 回答