2019-08-01 11:26:40 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
# Provides the VAT rate in use at the given date
|
|
|
|
class VatHistoryService
|
2021-12-23 19:36:23 +01:00
|
|
|
# return the VAT rate for the given InvoiceItem
|
2021-12-23 09:25:48 +01:00
|
|
|
def invoice_vat(invoice_item)
|
|
|
|
if invoice_item.invoice.is_a?(Avoir)
|
2021-12-23 19:36:23 +01:00
|
|
|
vat_rate(invoice_item.invoice.avoir_date, invoice_item.invoice_item_type)
|
2019-08-01 11:26:40 +02:00
|
|
|
else
|
2021-12-23 19:36:23 +01:00
|
|
|
vat_rate(invoice_item.invoice.created_at, invoice_item.invoice_item_type)
|
2019-08-01 11:26:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-12-23 19:36:23 +01:00
|
|
|
# return the VAT rate for the given date and vat type
|
2021-12-23 09:25:48 +01:00
|
|
|
def vat_rate(date, vat_rate_type)
|
2021-12-23 19:36:23 +01:00
|
|
|
vat_rates = vat_history(vat_rate_type)
|
2019-08-01 11:26:40 +02:00
|
|
|
|
2021-12-23 19:36:23 +01:00
|
|
|
first_rate = vat_rates.first
|
2019-08-01 11:26:40 +02:00
|
|
|
return first_rate[:rate] if date < first_rate[:date]
|
|
|
|
|
2021-12-23 19:36:23 +01:00
|
|
|
vat_rates.each_index do |i|
|
|
|
|
return vat_rates[i][:rate] if date >= vat_rates[i][:date] && (vat_rates[i + 1].nil? || date < vat_rates[i + 1][:date])
|
2019-08-01 11:26:40 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2021-12-23 09:25:48 +01:00
|
|
|
def vat_history(vat_rate_type)
|
2019-09-18 13:28:53 +02:00
|
|
|
chronology = []
|
2019-12-02 11:57:25 +01:00
|
|
|
end_date = DateTime.current
|
2019-09-18 13:28:53 +02:00
|
|
|
Setting.find_by(name: 'invoice_VAT-active').history_values.order(created_at: 'DESC').each do |v|
|
|
|
|
chronology.push(start: v.created_at, end: end_date, enabled: v.value == 'true')
|
|
|
|
end_date = v.created_at
|
2019-08-01 11:26:40 +02:00
|
|
|
end
|
2019-10-29 15:20:25 +01:00
|
|
|
chronology.push(start: DateTime.new(0), end: end_date, enabled: false)
|
2019-09-18 13:28:53 +02:00
|
|
|
date_rates = []
|
2021-12-23 09:25:48 +01:00
|
|
|
vat_rate_history_values = []
|
2021-12-23 19:36:23 +01:00
|
|
|
if vat_rate_type.present?
|
|
|
|
vat_rate_by_type = Setting.find_by(name: "invoice_VAT-rate_#{vat_rate_type}")&.history_values&.order(created_at: 'ASC')
|
2021-12-24 19:05:03 +01:00
|
|
|
first_vat_rate_by_type = vat_rate_by_type&.select { |v| v.value.present? }&.first
|
2021-12-23 19:36:23 +01:00
|
|
|
if first_vat_rate_by_type
|
|
|
|
vat_rate_history_values = Setting.find_by(name: 'invoice_VAT-rate').history_values.where('created_at < ?', first_vat_rate_by_type.created_at).order(created_at: 'ASC').to_a
|
|
|
|
vat_rate_by_type = Setting.find_by(name: "invoice_VAT-rate_#{vat_rate_type}").history_values.where('created_at >= ?', first_vat_rate_by_type.created_at).order(created_at: 'ASC')
|
|
|
|
vat_rate_by_type.each do |rate|
|
|
|
|
if rate.value.blank?
|
|
|
|
vat_rate = Setting.find_by(name: 'invoice_VAT-rate').history_values.where('created_at < ?', rate.created_at).order(created_at: 'DESC').first
|
|
|
|
rate.value = vat_rate.value
|
|
|
|
end
|
|
|
|
vat_rate_history_values.push(rate)
|
2021-12-23 09:25:48 +01:00
|
|
|
end
|
2021-12-23 19:36:23 +01:00
|
|
|
else
|
|
|
|
vat_rate_history_values = Setting.find_by(name: 'invoice_VAT-rate').history_values.order(created_at: 'ASC').to_a
|
|
|
|
end
|
|
|
|
vat_rate_history_values.each do |rate|
|
|
|
|
range = chronology.select { |p| rate.created_at.to_i.between?(p[:start].to_i, p[:end].to_i) }.first
|
|
|
|
date = range[:enabled] ? rate.created_at : range[:end]
|
|
|
|
date_rates.push(date: date, rate: rate.value.to_i)
|
|
|
|
end
|
|
|
|
chronology.reverse_each do |period|
|
|
|
|
date_rates.push(date: period[:start], rate: 0) unless period[:enabled]
|
2021-12-23 09:25:48 +01:00
|
|
|
end
|
|
|
|
else
|
2021-12-23 19:36:23 +01:00
|
|
|
date_rates.push(date: chronology[-1][:start], rate: 0)
|
2019-09-18 13:28:53 +02:00
|
|
|
end
|
|
|
|
date_rates.sort_by { |k| k[:date] }
|
2019-08-01 11:26:40 +02:00
|
|
|
end
|
2019-09-18 13:28:53 +02:00
|
|
|
end
|