mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
7 lines
234 B
Ruby
7 lines
234 B
Ruby
class AccountInvoice < ActiveRecord::Base
|
|
belongs_to :user, class_name: "Spree::User"
|
|
belongs_to :order, class_name: "Spree::Order"
|
|
attr_accessible :user_id, :order_id, :issued_at, :month, :year
|
|
has_many :billable_periods
|
|
end
|