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.
38 lines
791 B
38 lines
791 B
2 years ago
|
module Forms
|
||
|
module BulkUploadSales
|
||
|
class Year
|
||
|
include ActiveModel::Model
|
||
|
include ActiveModel::Attributes
|
||
|
include Rails.application.routes.url_helpers
|
||
|
|
||
|
attribute :year, :integer
|
||
|
|
||
|
validates :year, presence: true
|
||
|
|
||
|
def view_path
|
||
|
"bulk_upload_sales_logs/forms/year"
|
||
|
end
|
||
|
|
||
|
def options
|
||
|
possible_years.map do |year|
|
||
|
OpenStruct.new(id: year, name: "#{year}/#{year + 1}")
|
||
|
end
|
||
|
end
|
||
|
|
||
|
def back_path
|
||
|
sales_logs_path
|
||
|
end
|
||
|
|
||
|
def next_path
|
||
|
bulk_upload_sales_log_path(id: "prepare-your-file", form: { year: })
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def possible_years
|
||
|
FormHandler.instance.sales_forms.values.map { |form| form.start_date.year }.sort.reverse
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|