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.
28 lines
506 B
28 lines
506 B
2 years ago
|
module Forms
|
||
|
module BulkUploadSales
|
||
|
class CheckingFile
|
||
|
include ActiveModel::Model
|
||
|
include ActiveModel::Attributes
|
||
|
include Rails.application.routes.url_helpers
|
||
|
|
||
|
attribute :year, :integer
|
||
|
|
||
|
def view_path
|
||
|
"bulk_upload_sales_logs/forms/checking_file"
|
||
|
end
|
||
|
|
||
|
def back_path
|
||
|
bulk_upload_sales_log_path(id: "start")
|
||
|
end
|
||
|
|
||
|
def year_combo
|
||
|
"#{year}/#{year + 1 - 2000}"
|
||
|
end
|
||
|
|
||
|
def save!
|
||
|
true
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|