|
|
|
class BulkUploadSalesLogsController < ApplicationController
|
|
|
|
before_action :authenticate_user!
|
|
|
|
|
|
|
|
def start
|
|
|
|
if in_crossover_period?
|
|
|
|
redirect_to bulk_upload_sales_log_path(id: "year")
|
|
|
|
else
|
|
|
|
redirect_to bulk_upload_sales_log_path(id: "prepare-your-file", form: { year: current_year })
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
render form.view_path
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if form.valid? && form.save!
|
|
|
|
redirect_to form.next_path
|
|
|
|
else
|
|
|
|
render form.view_path
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def current_year
|
|
|
|
FormHandler.instance.forms["current_sales"].start_date.year
|
|
|
|
end
|
|
|
|
|
|
|
|
def in_crossover_period?
|
|
|
|
FormHandler.instance.sales_in_crossover_period?
|
|
|
|
end
|
|
|
|
|
|
|
|
def form
|
|
|
|
@form ||= case params[:id]
|
|
|
|
when "year"
|
|
|
|
Forms::BulkUploadSales::Year.new(form_params)
|
|
|
|
when "prepare-your-file"
|
|
|
|
Forms::BulkUploadSales::PrepareYourFile.new(form_params)
|
|
|
|
when "guidance"
|
|
|
|
Forms::BulkUploadSales::Guidance.new(form_params)
|
|
|
|
when "upload-your-file"
|
|
|
|
Forms::BulkUploadSales::UploadYourFile.new(form_params.merge(current_user:))
|
|
|
|
when "checking-file"
|
|
|
|
Forms::BulkUploadSales::CheckingFile.new(form_params)
|
|
|
|
else
|
|
|
|
raise "Page not found for path #{params[:id]}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def form_params
|
|
|
|
params.fetch(:form, {}).permit(:year, :file)
|
|
|
|
end
|
|
|
|
end
|