在我的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)