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
1.2 KiB
47 lines
1.2 KiB
module CollectionTimeHelper |
|
def collection_start_year_for_date(date) |
|
window_end_date = Time.zone.local(date.year, 4, 1) |
|
date < window_end_date ? date.year - 1 : date.year |
|
end |
|
|
|
def current_collection_start_year |
|
collection_start_year_for_date(Time.zone.now) |
|
end |
|
|
|
def collection_start_date(date) |
|
Time.zone.local(collection_start_year_for_date(date), 4, 1) |
|
end |
|
|
|
def date_mid_collection_year_formatted(date) |
|
example_date = date.nil? ? Time.zone.today : collection_start_date(date).to_date + 5.months |
|
example_date.to_formatted_s(:govuk_date_number_month) |
|
end |
|
|
|
def current_collection_start_date |
|
Time.zone.local(current_collection_start_year, 4, 1) |
|
end |
|
|
|
def collection_end_date(date) |
|
Time.zone.local(collection_start_year_for_date(date) + 1, 3, 31).end_of_day |
|
end |
|
|
|
def current_collection_end_date |
|
Time.zone.local(current_collection_start_year + 1, 3, 31).end_of_day |
|
end |
|
|
|
def previous_collection_end_date |
|
current_collection_end_date - 1.year |
|
end |
|
|
|
def next_collection_start_year |
|
current_collection_start_year + 1 |
|
end |
|
|
|
def previous_collection_start_year |
|
current_collection_start_year - 1 |
|
end |
|
|
|
def previous_collection_start_date |
|
current_collection_start_date - 1.year |
|
end |
|
end
|
|
|