2019-07-30 21:29:24 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-25 16:15:39 +00:00
|
|
|
# License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later
|
2019-02-01 19:40:24 +00:00
|
|
|
class CampaignGiftOption < ApplicationRecord
|
2019-07-30 21:29:24 +00:00
|
|
|
# TODO
|
|
|
|
# attr_accessible \
|
|
|
|
# :amount_one_time, #int (cents)
|
|
|
|
# :amount_recurring, #int (cents)
|
|
|
|
# :amount_dollars, #str, gets converted to amount
|
|
|
|
# :description, # text
|
|
|
|
# :name, # str
|
|
|
|
# :campaign, #assocation
|
|
|
|
# :quantity, #int (optional)
|
|
|
|
# :to_ship, #boolean
|
|
|
|
# :order, #int (optional)
|
|
|
|
# :hide_contributions #boolean (optional)
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2019-07-30 21:29:24 +00:00
|
|
|
belongs_to :campaign
|
|
|
|
has_many :campaign_gifts
|
|
|
|
has_many :donations, through: :campaign_gifts
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2019-07-30 21:29:24 +00:00
|
|
|
validates :name, presence: true
|
|
|
|
validates :campaign, presence: true
|
|
|
|
validates :amount_one_time, presence: true, numericality: { only_integer: true }, unless: :amount_recurring
|
|
|
|
validates :amount_recurring, presence: true, numericality: { only_integer: true }, unless: :amount_one_time
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2019-07-30 21:29:24 +00:00
|
|
|
def total_gifts
|
|
|
|
campaign_gifts.count
|
|
|
|
end
|
2018-03-25 17:30:42 +00:00
|
|
|
|
2019-07-30 21:29:24 +00:00
|
|
|
def as_json(options = {})
|
|
|
|
h = super(options)
|
|
|
|
h[:total_gifts] = total_gifts
|
|
|
|
h
|
|
|
|
end
|
2018-03-25 17:30:42 +00:00
|
|
|
end
|