apply highlighting and showing supplier name to invoice pdf

This commit is contained in:
viehlieb 2025-05-22 14:55:35 +02:00
parent 45db0575b1
commit a65120eefc
9 changed files with 96 additions and 72 deletions

View file

@ -0,0 +1,12 @@
require 'factory_bot'
FactoryBot.define do
factory :sepa_account_holder do
user { create :user }
group { create :ordergroup }
iban { "DE89370400440532013000" }
bic { "DEUTDEFF" }
mandate_id { "TEST-MANDATE-001" }
mandate_date_of_signature { Time.current }
end
end