2024-10-01 10:47:59 -04:00
|
|
|
class AccountImport < Import
|
2025-07-15 11:42:41 -04:00
|
|
|
OpeningBalanceError = Class.new(StandardError)
|
|
|
|
|
2024-10-01 10:47:59 -04:00
|
|
|
def import!
|
|
|
|
transaction do
|
|
|
|
rows.each do |row|
|
|
|
|
mapping = mappings.account_types.find_by(key: row.entity_type)
|
|
|
|
accountable_class = mapping.value.constantize
|
|
|
|
|
|
|
|
account = family.accounts.build(
|
|
|
|
name: row.name,
|
|
|
|
balance: row.amount.to_d,
|
|
|
|
currency: row.currency,
|
|
|
|
accountable: accountable_class.new,
|
|
|
|
import: self
|
|
|
|
)
|
|
|
|
|
|
|
|
account.save!
|
2024-10-24 11:02:27 -04:00
|
|
|
|
2025-07-15 11:42:41 -04:00
|
|
|
manager = Account::OpeningBalanceManager.new(account)
|
|
|
|
result = manager.set_opening_balance(balance: row.amount.to_d)
|
|
|
|
|
|
|
|
# Re-raise since we should never have an error here
|
|
|
|
if result.error
|
|
|
|
raise OpeningBalanceError, result.error
|
|
|
|
end
|
2024-10-01 10:47:59 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def mapping_steps
|
|
|
|
[ Import::AccountTypeMapping ]
|
|
|
|
end
|
|
|
|
|
|
|
|
def required_column_keys
|
|
|
|
%i[name amount]
|
|
|
|
end
|
|
|
|
|
|
|
|
def column_keys
|
|
|
|
%i[entity_type name amount currency]
|
|
|
|
end
|
|
|
|
|
|
|
|
def dry_run
|
|
|
|
{
|
|
|
|
accounts: rows.count
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
|
|
|
def csv_template
|
|
|
|
template = <<-CSV
|
|
|
|
Account type*,Name*,Balance*,Currency
|
|
|
|
Checking,Main Checking Account,1000.00,USD
|
|
|
|
Savings,Emergency Fund,5000.00,USD
|
|
|
|
Credit Card,Rewards Card,-500.00,USD
|
|
|
|
CSV
|
|
|
|
|
|
|
|
CSV.parse(template, headers: true)
|
|
|
|
end
|
2025-05-18 15:02:51 -04:00
|
|
|
|
|
|
|
def max_row_count
|
|
|
|
50
|
|
|
|
end
|
2024-10-01 10:47:59 -04:00
|
|
|
end
|