You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
915 B
47 lines
915 B
class SalesLogValidator < ActiveModel::Validator |
|
def validate(record); end |
|
end |
|
|
|
class SalesLog < Log |
|
has_paper_trail |
|
|
|
validates_with SalesLogValidator |
|
before_save :update_status! |
|
|
|
scope :filter_by_organisation, ->(org, _user = nil) { where(owning_organisation: org).or(where(managing_organisation: org)) } |
|
|
|
STATUS = { "not_started" => 0, "in_progress" => 1, "completed" => 2 }.freeze |
|
enum status: STATUS |
|
|
|
OPTIONAL_FIELDS = [].freeze |
|
|
|
def startdate |
|
saledate |
|
end |
|
|
|
def self.editable_fields |
|
attribute_names |
|
end |
|
|
|
def form_name |
|
return unless saledate |
|
|
|
"#{collection_start_year}_#{collection_start_year + 1}_sales" |
|
end |
|
|
|
def form |
|
FormHandler.instance.get_form(form_name) || FormHandler.instance.get_form("2022_2023_sales") |
|
end |
|
|
|
def optional_fields |
|
[] |
|
end |
|
|
|
def not_started? |
|
status == "not_started" |
|
end |
|
|
|
def completed? |
|
status == "completed" |
|
end |
|
end
|
|
|