Skip to content

Entries

kontera exports business transactions as journal entries. As an example:

  • Invoice from 13.01.2024, type of “accounts receivables” for 65 CHF, two line items with 30 CHF posted on 6510 and 35 CHF posted on 6500
  • accrual_basis accounting method
  • Paid on 14.01.2024 by credit card, 0.50 CHF fee

Collective entries (JSON)

The following journal entries are created by kontera:

lineIddatedebitcreditamountcurrency
K-XYZ-C-1-12024-01-13651030CHF
K-XYZ-C-1-22024-01-13650035CHF
K-XYZ-C-1-32024-01-13200065CHF
lineIddatedebitcreditamountcurrency
K-XYZ-C-2-12024-01-14200065CHF
K-XYZ-C-2-22024-01-14109065CHF
lineIddatedebitcreditamountcurrency
K-XYZ-C-3-12024-01-1469400.50CHF
K-XYZ-C-3-22024-01-1410900.50CHF

The encoded information gives you all the flexibility how you’d like to represent this in your own accounting system.

  • Every receipt (no matter if accounts receivables or accounts payables) gets a unique KonteraId
  • There can be multiple entries generated per business transaction:
    • Every entry is balanced regarding credit / debit
    • Every entry might contain multiple lines

The accounting method of your tax period matters in those regards, for example if you use cash_basis as accounting method the generated journal entries change:

lineIddatedebitcreditamountcurrency
K-XYZ-C-1-12024-01-13651030CHF
K-XYZ-C-1-22024-01-13650035CHF
K-XYZ-C-1-32024-01-13109065CHF
lineIddatedebitcreditamountcurrency
K-XYZ-C-2-12024-01-1469400.50CHF
K-XYZ-C-2-22024-01-1410900.50CHF

Single entries (CSV)

If you choose the CSV format, the representation slightly changes. Every line in the CSV is already a balanced journal entry containing both credit and debit accounts. As a result, the same transaction as above, looks like this:

lineIddatedebitcreditamountcurrency
K-XYZ-S-1-12024-01-136510200030CHF
K-XYZ-S-1-22024-01-136500200035CHF
lineIddatedebitcreditamountcurrency
K-XYZ-S-2-12024-01-142000109065CHF
lineIddatedebitcreditamountcurrency
K-XYZ-S-3-12024-01-14694010900.50CHF