mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-20 21:59:38 +02:00
* Allow inline account creation when importing CSV * Sanitize numeric inputs for CSV * CSV import date validation * Lint fix
84 lines
2.3 KiB
Ruby
84 lines
2.3 KiB
Ruby
class Import::Row < ApplicationRecord
|
|
belongs_to :import
|
|
|
|
validates :amount, numericality: true, allow_blank: true
|
|
validates :currency, presence: true
|
|
|
|
validate :date_valid
|
|
validate :required_columns
|
|
validate :currency_is_valid
|
|
|
|
scope :ordered, -> { order(:id) }
|
|
|
|
def tags_list
|
|
if tags.blank?
|
|
[ "" ]
|
|
else
|
|
tags.split("|").map(&:strip)
|
|
end
|
|
end
|
|
|
|
def date_iso
|
|
Date.strptime(date, import.date_format).iso8601
|
|
end
|
|
|
|
def signed_amount
|
|
if import.type == "TradeImport"
|
|
price.to_d * apply_trade_signage_convention(qty.to_d)
|
|
else
|
|
apply_transaction_signage_convention(amount.to_d)
|
|
end
|
|
end
|
|
|
|
def sync_mappings
|
|
Import::CategoryMapping.sync(import) if import.column_keys.include?(:category)
|
|
Import::TagMapping.sync(import) if import.column_keys.include?(:tags)
|
|
Import::AccountMapping.sync(import) if import.column_keys.include?(:account)
|
|
Import::AccountTypeMapping.sync(import) if import.column_keys.include?(:entity_type)
|
|
end
|
|
|
|
private
|
|
# In the Maybe system, positive quantities == "inflows"
|
|
def apply_trade_signage_convention(value)
|
|
value * (import.signage_convention == "inflows_positive" ? 1 : -1)
|
|
end
|
|
|
|
# In the Maybe system, positive amounts == "outflows", so we must reverse signage
|
|
def apply_transaction_signage_convention(value)
|
|
value * (import.signage_convention == "inflows_positive" ? -1 : 1)
|
|
end
|
|
|
|
def required_columns
|
|
import.required_column_keys.each do |required_key|
|
|
errors.add(required_key, "is required") if self[required_key].blank?
|
|
end
|
|
end
|
|
|
|
def date_valid
|
|
return if date.blank?
|
|
|
|
parsed_date = Date.strptime(date, import.date_format) rescue nil
|
|
|
|
if parsed_date.nil?
|
|
errors.add(:date, "must exactly match the format: #{import.date_format}")
|
|
return
|
|
end
|
|
|
|
min_date = Account::Entry.min_supported_date
|
|
max_date = Date.current
|
|
|
|
if parsed_date < min_date || parsed_date > max_date
|
|
errors.add(:date, "must be between #{min_date} and #{max_date}")
|
|
end
|
|
end
|
|
|
|
def currency_is_valid
|
|
return true if currency.blank?
|
|
|
|
begin
|
|
Money::Currency.new(currency)
|
|
rescue Money::Currency::UnknownCurrencyError
|
|
errors.add(:currency, "is not a valid currency code")
|
|
end
|
|
end
|
|
end
|