mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
18 lines
636 B
Ruby
18 lines
636 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Validates that all invoices in the current accounting period are chained with footprints which ensure their integrity
|
|
class PeriodIntegrityValidator < ActiveModel::Validator
|
|
def validate(record)
|
|
the_end = record.end_at
|
|
the_start = record.start_at
|
|
|
|
invoices = Invoice.where('created_at >= :start_date AND created_at < :end_date', start_date: the_start, end_date: the_end)
|
|
.includes(:invoice_items)
|
|
|
|
|
|
invoices.each do |i|
|
|
record.errors["invoice_#{i.reference}".to_sym] << I18n.t('errors.messages.invalid_footprint') unless i.check_footprint
|
|
end
|
|
end
|
|
end
|