如何从兄弟表中添加Active Admin索引列?



在我的Customers_Rewards活动管理中,我目前显示Customer_Rewards和Customer数据表中的列,但我还想显示Order数据表中的列(如store_id)。

ActiveAdmin.register CustomerReward do
    menu :parent=>"Customers", :priority=>10, :label=>"Activated Rewards"
  index do
    selectable_column
    column("Customer ID"){|u| u.customer.id }
    column("Store ID"){|u| u.order.store_id }  #DOES NOT WORK
    column("First name"){|u| u.customer.first_name }
    column("Last name"){|u| u.customer.last_name }
    column("Email"){|u| u.customer.email }
    column :reward
    column :points_redeemed
    column :expires_at
    column :redeemed_at
    bool_column :is_active
    actions
  end
 _____________________________________________________
class CustomerReward < ActiveRecord::Base
  belongs_to :customer
end
class Customer < ActiveRecord::Base
  has_many :addresses, :order => 'is_active desc, is_default desc'
  has_many :customer_rewards
  has_many :orders
end
class Order < ActiveRecord::Base
  belongs_to :customer
end

I get an error message of: 
 undefined method `order' for #<Customer:0x007fb1dc2e3160>

u.order.store_id意味着你告诉Rails从orders表和customer_rewards表的关联中获取order,但是没有这样的关系。

你能做的就是调用
u.customer.orders

返回与CustomerReward对象(u)相关的客户的所有订单。

我不知道基于什么你会得到具体的store_id,因为

u.customer.orders

将返回一个集合,因此将有一个store_id s的集合——您可以通过调用

来检查它。
u.customer.orders.pluck(:store_id) # same as map(&:store_id)

相关内容

  • 没有找到相关文章

最新更新