Sha256: 9fc67e8ee20d3f254f12c503c8ad1459c861feb5bbcc36578d560dc1c45c9e10

Contents?: true

Size: 1.72 KB

Versions: 7

Compression:

Stored size: 1.72 KB

Contents

# frozen_string_literal: true

module LedgerSync
  module Adaptors
    module QuickBooksOnline
      module LedgerSerializerType
        class AccountType < Adaptors::LedgerSerializerType::MappingType
          MAPPING = {
            'bank' => 'Bank',
            'other_current_assets' => 'Other Current Asset',
            'fixed_asset' => 'Fixed Asset',
            'other_asset' => 'Other Asset',
            'accounts_receivable' => 'Accounts Receivable',
            'equity' => 'Equity',
            'expense' => 'Expense',
            'other_expense' => 'Other Expense',
            'cost_of_goods_sold' => 'Cost of Goods Sold',
            'accounts_payable' => 'Accounts Payable',
            'credit_card' => 'Credit Card',
            'long_term_liability' => 'Long Term Liability',
            'other_current_liability' => 'Other Current Liability',
            'income' => 'Income',
            'other_income' => 'Other Income'
          }.freeze

          TYPE_TO_CLASSIFICATION_MAPPING = {
            'bank' => 'asset',
            'other_current_assets' => 'asset',
            'fixed_asset' => 'asset',
            'other_asset' => 'asset',
            'accounts_receivable' => 'asset',
            'equity' => 'equity',
            'expense' => 'expense',
            'other_expense' => 'expense',
            'cost_of_goods_sold' => 'expense',
            'accounts_payable' => 'liability',
            'credit_card' => 'liability',
            'long_term_liability' => 'liability',
            'other_current_liability' => 'liability',
            'income' => 'revenue',
            'other_income' => 'revenue'
          }

          def self.mapping
            @mapping ||= MAPPING
          end
        end
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ledger_sync-1.3.5 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb
ledger_sync-1.3.4 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb
ledger_sync-1.3.3 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb
ledger_sync-1.3.2 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb
ledger_sync-1.3.1 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb
ledger_sync-1.1.3 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb
ledger_sync-1.1.2 lib/ledger_sync/adaptors/quickbooks_online/ledger_serializer_type/account_type.rb