mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
15 lines
550 B
Ruby
15 lines
550 B
Ruby
class Schedule < ActiveRecord::Base
|
|
has_and_belongs_to_many :order_cycles, join_table: 'order_cycle_schedules'
|
|
has_many :coordinators, uniq: true, through: :order_cycles
|
|
|
|
attr_accessible :name, :order_cycle_ids
|
|
|
|
validates :order_cycles, presence: true
|
|
|
|
scope :with_coordinator, lambda { |enterprise| joins(:order_cycles).where('coordinator_id = ?', enterprise.id).select('DISTINCT schedules.*') }
|
|
|
|
def current_or_next_order_cycle
|
|
order_cycles.where('orders_close_at > (?)', Time.zone.now).order('orders_close_at ASC').first
|
|
end
|
|
end
|