1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/app/validators/period_integrity_validator.rb
2023-03-22 10:58:22 +01:00

13 lines
457 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)
invoices = record.invoices.includes(:invoice_items)
invoices.each do |i|
record.errors.add("invoice_#{i.reference}".to_sym, I18n.t('errors.messages.invalid_footprint')) unless i.check_footprint
end
end
end