Credit Notes

From GnuCash
Jump to: navigation, search

Introduction

Credit notes are a common document in business transactions mostly used to correct items/services that were incorrectly invoiced before.

Note upfront GnuCash makes a distinction between invoices and bills in the user interface. A bill is received from a vendor, while an invoice is sent to a customer. This distinction is only made to avoid user confusion. The document received from a vendor could just as well be called an invoice in accounting terms. For the remainder of this page I will only talk about invoices, but it can mean either bill or invoice in the GnuCash sense of the words.

From an accounting perspective a credit note is very similar to an invoice. The document has got all the same properties as an invoice, but the sign is reversed. When you send your customer an invoice, the customer owes you money. Yet when you send your customer a credit note, you owe your customer some money.

Since technically invoices and credit notes are that similar, it makes sense to treat both documents very similarly in GnuCash as well, at least in the processing. To avoid confusion the user interface could make a distinction between the two document types, but the user should be allowed more or less the same set of actions on either.

At present, GnuCash doesn't really support credit notes. The workaround suggested is to make a payment to the vendor for the amount of the credit note received. In this way at least GnuCash knows the vendor owes you this amount of money and will substract it automatically from the next invoice(s). This is not optimal in several ways:

  • There's no document tracking. GnuCash doesn't know anything about the credit note.
  • Income/Expense/Tax accounts aren't updated properly. Say the credit note was for a book you bought before, then the original invoice would increase the "Books" expense account, yet the expense account isn't decreased when the credit note is processed. So you end up with an incorrect balance. And it gets even more complicated if the credit note has multiple entries (with or without taxes).

What follows is an analysis of what is required to fully support credit notes in GnuCash. This includes an interface to enter credit notes and how to handle credit note payments or invoice/credit note interactions.

The sections below will analyse parts of the GnuCash code that may be impacted when implementing credit notes. Each section starts with a rough description of the code in question, how it could be impacted and what has to be done to deal with this.

At the end of each section I will add summaries of the changes required in the code (TODO).

Artificial limitation...

The core issue regarding credit notes is a design assumption from a long time back:

  • to track invoice payments, invoice splits and its related payment splits are grouped in lots. Some parts of GnuCash assume invoices to be in one sign (say positive) and payments in the opposite sign (say negative for this example). Note that for bills the signs are exactly opposite but that's irrelevant for this discussion.
  • From a business logic perspective, a credit note is a negative invoice. With the above assumption (invoice=positive, payment=negative) that would mean that some parts of the business logic would incorrectly interpret a credit note split as a payment and a credit note payment as an invoice.

To avoid this unwanted confusion "negative" invoices are prohibited.

New approach

Note A first attempt was made to implement Credit Notes in a way that was more or less backwards compatible. There were several drawbacks to this attempt and it would remain clumsy for future extensions. So after some discussion on IRC, I decided to forgo backwards compatibility and work on a cleaner design. The original attempt can still be found [here]. It may be useful to understand the origin of some design decisions.

Since invoices and credit notes are mostly the same thing except for their sense, the code for both objects is largely the same. But the GUI has to know which type it is handling to update various labels and internal sign of the values entered. To accommodate for this a new field will be added to the invoice object. This field will hold the invoice object "type", being invoice or credit note. Together with the owner type (Vendor/Customer/Employee) the code can reliably determine which labelling to use and the sign of the associated values.

Note that this design decision means that the data format is no longer compatible with older GnuCash versions.

The user must be able to enter Credit Notes just as he can enter invoices. The invoice dialog and register can mostly be reused. One particular detail to keep in mind: a normal document be it invoice, bill or customer/vendor credit note is always entered with positive values in the ledger, even if these values have opposite effects on the balance. The proper sign of these values is dealt with internally. For bills and invoices this is already so, but for customer/vendor credit notes, the logic for this still has to be extended.

Posting a credit note is exactly the same as posting an invoice. However the logic to post invoices will not work properly with credit notes, though this can probably easily be fixed. For more details, see below.

At some point the credit note has to be "paid". In real life this is usually done by substracting it from the amount still due on other invoices of the same business partner. This would mean that the payment logic should be extended to allow this. There are two parts to this:

  • The automatic payment assignment logic: this logic currently automatically assigns payments to open invoices, but doesn't know anything about credit notes yet and would definitely handle those wrongly. See later for more details on this.
  • The payment dialog: this is what the user uses to assign payments. It doesn't allow to link a credit note to an invoice though. This may be extended to show all open documents for a business partner and allowing the user to select multiple ones.

I'm not sure how difficult these improvements would be. In the first phase at least I intend to ignore this part. Instead invoices and credit notes will be totally unaware of one another. Instead you pay each one separately. This will mean one superfluous transaction, but the total balance is still correct.

If the code behind all the user actions above makes sure the sign of all splits introduces remains correct, then the generic accounting logic continues to work unaltered. The same goes for all reports that are only interested in transactions.

There are only a few improvements required for reports: - A user may want to print a credit note at some point (particularly a credit note to a customer). The reports used to print invoices are reusable, but will have to state "Credit Note" instead of "Invoice" and they will have to take care of using the proper sign of the values. - A business partner overview (vendor report/customer report) may want to distinguish between invoices and credit notes as well. It doesn't right now.

Analysis of affected parts

xml backend

Since I'm adding a new field invoice type field to the invoice object, the xml backend will need to know how to save or load this new field.

TODO
  • A new row will have to be added to the invoice_handlers_v2 table in gnc-invoice-xml-v2.c for the invoice type field
  • A handler for this field should be written.
UPDATE
To avoid unnecessary backward compatibility issues, the invoice type field is implemented as a kvp (is_credit_note). DONE

sql backend

Like with the xml backend, we need to know how to save or load the invoice type field.

TODO
  • A new row will have to be added to col_table in gnc-invoice-sql.c.

Engine

gncInvoiceGetTotalInteral and friends (in gncInvoice.c)

As explained above, internally some invoice types are considered negative internally, while they are presented positive to the user. The functions calculating the totals take this into account. There are several totals that can be calculated, but all use the gncInvoiceGetTotalInternal as a basis. And this function currently determines when to reverse the value. Since we are adding new invoice types, this reversal check must be adapted.

TODO
  • The reverse logic should be updated. Probably it should be refactored in an independent function to be used by later modules as well.

Update This is actually not the case. The gncInvoiceGetTotalInternal function uses the "reverse" parameter only to determine if the sum should use the entry's i_* values or the b_* values. The first one stores customer invoice amounts (and future customer credit note amounts), the latter stores vendor bill amounts (and future vendor credit note amounts).

To avoid confusion I will rename the "reverse" parameter to a more telling "is_cust_doc". This better reflects what the parameter is actually used for. DONE

gncInvoicePostToAccount (in gncInvoice.c)

When posting an invoice the code checks for an open lot for the invoice's owner that can be used to associate with this invoice. The check is twofold:

  • Is this lot a "payment" ? This actually checks if the lot has the opposite sign of the invoice. If not the evaluated lot is skipped.
  • Does the lot have an invoice associated with it ? If so, the lot is skipped as well. This prevents that the code accidentally attempts to associate two invoices with the same lot (which would seriously mess up things).

By the way this check is not in gncInvoicePostToAccount but in the helper function gnc_lot_match_owner_payment in the same file.

These checks together mean that posting a credit note will never accidentally try to post it to an open invoice lot.

The code as is however will fail to work for posting credit notes because of the simple sign evaluation. To enable posting for credit notes the gncInvoicePostToAccount the calculation of the "reverse" parameter will have to be extended.

TODO
  • The code to find lots eligible to post to should be revised. One way to do this is to set the "reverse" parameter not only on owner type but also on invoice vs credit note. DONE

gncOwnerApplyPayment (in gncOwner.c)

When applying a payment, this code will iterate over all open lots for a given owner. This can include a specific lot associated with a preselected invoice, but that's not relevant to this discussion.

When filtering the lots, there's no check on sign. All open lots will be selected. When later the routine starts applying payments the sign is checked. Note that in this context a payment is considered negative, compared to an invoice balance being positive. Since a credit note has the opposite sign of an invoice it's also considered negative in this context. Lots for which the sign is "negative" (so: payments and credit notes) are skipped, although the first one found is retain to add overpayments to in the end.

This can cause problems.

Use case
  • suppose we have an unpaid credit note and no unpaid invoices. For simplicity I'll also assume there are no other overpayments.
  • Now let's apply a payment for this owner.
  • When the routine iterates over the open lots, it will find the credit note lot, consider it a "negative" lot and take it for a valid pre-payment lot.
  • Since there are no open invoice lots, the payment is considered an overpayment which is to be added to a pre-payment lot.
  • The credit note lot was set apart as the pre-payment lot, so the overpayment will be added there.
  • We now still have only one lot, but holding the credit note and a payment, effectively increasing the lot.
  • Next step: Create and post a new invoice.
  • As described above when posting an invoice the lots which already have a document associated with them are skipped. So the credit note lot with the pre-payment is skipped and a new lot is created for the invoice.
  • The prepayment didn't get linked with the invoice. So when the time comes to pay the invoice, GnuCash will propose its full amount, instead of the invoice amount minus the credit note and the prepayment.
  • Also when selecting the credit note to pay (assuming the sign issues for this have been dealt with) GnuCash would now propose a payment of the credit note amount plus the prepayment.

Note that eventually the totals will add up again so the complete owner balance remains correct. It's just in the payment interface that things get confusing.

To prevent this situation from happening, an additional check can be added that prevents any lot having an invoice associated already to be reserved as a pre-payment lot. The net result would be that credit notes will completely be ignored for payments on an invoice.

The code as is won't work for Credit Notes either. A lot is considered for a payment when its balance is "positive", but with the current evaluation of "positive" a credit note has a "negative" balance and is simply skipped. Additionally when a payment for a credit note is entered (assuming the GUI allows this), this code will add this payment to the first invoice found instead. But that's the wrong sign, so the invoice lot would be increased instead of decreased. To fix this, lots to be considered shouldn't be of a predefined "positive" or "negative", but rather of the opposite sign of the payment and have a document attached to it. And conversely to be eligible as a pre-payment lot (used at the end to save overpayments) a lot should be of the same sign as the payment and not have a document associated with it. This way payments are never accidentally assigned to lots that don't make sense.

Note that combined with the restrictions in posting invoices/credit notes, a credit note is never automatically used to reduce the amount due for an invoice. This is slightly inconvenient and may call for a more flexible user interface to handle payments.

Alternatively or additionally the payment code could already be improved to separate invoice and credit note lots at the beginning, first creating transactions that reduce open invoice and credit note lots to a minimum ("pay" open invoices with open credit notes or the other way around depending on which kind has the highest balance) and only then try to assign the payment to the still open lots. This may turn up its own set of problems though and should be carefully tested.

TODO
  • Add a check that prevents a lot to be marked as the pre-payment lot if this lot has a document associated with it. DONE
  • Automatic payments should be made against lots of a different sign, not to lots of a precalculated specific sign. DONE
  • A more flexible gui to associate payments with invoices/credit notes may be needed.

GUI

gnc_entry_ledger_model.c

This file represents the data model used by the invoice ledger. Since we want to keep the signs positive while editing entries, some of the functions in this file may have to be made sign aware. To reduce the amount of reports that have to be changed, it would make sense to store credit note values as negative in entries..

TODO
  • Potentially deal with sign reversals. DONE

General GUI changes to create/edit view credit notes

The gui code in the new GnuCash version has to be updated to allow the creation and modification of credit notes. There are two ways of doing this:

  • Either separate menu options are added for credit notes in the Customer/Vendor/Employee menus. In this case the new invoice dialog can be reused mostly unchanged, with the exception of updating some labels ("Credit Note" instead of "Invoice").
  • Or the current Bill/Invoice interfaces are adapted to offer the choice between invoice/credit note in the new invoice dialog. This would require the addition of a type selection widget in the new invoice dialog. Additionally a more generic title for the menu items "New Bill"/"New Invoice" should be found.

I'm in favoru of the second approach, mainly to avoid too many menu items. A suitable name for the menus could simply be "New Document..." and "Find Document". The subsequend dialogs will have the proper labels or buttons to clearly mark a document as an invoice or a credit note.

In both cases the new invoice dialog and associated callbacks can mostly be reused.

For editing/viewing a credit note, the invoice edit window can mostly be reused, except the signs have to be reverted once more to have positive document balances in all normal cases. And some labels have to be set properly.

Note that the balance is not strictly required to be positive anymore with all the changes so far. It is perfectly possible to have a truly negative invoice, which is mathematically the same as a credit note, but is treated differently from an accounting point of view.

Reports

easy-invoice.scm/fancy-invoice.scm/invoice.scm

These are three reports to display one particular invoice. They are influenced in two aspects:

  • Each of them write the document type somewhere, currently being "Invoice", "Bill" or "Employee Voucher". Credit notes will need their own document type displayed, being "Credit note" and perhaps "Debit note". What names to use still has to be decided.
  • The invoiced amounts are always positive on the documents and the payment amounts negative. This is checked based on the owner type. However for credit notes this logic would result in inverted signs. So to get a proper credit note report the owner checks have to be extended with a invoice/credit note check to result in proper signs of all values.

Note that this is so for both old and new versions of GnuCash. However, since old versions aren't supposed to support credit notes, and the numbers aren't wrong per se (sums should still be correct, albeit with an inverted sign), I think no changes should be made to the pre-credit note version of GnuCash.

TODO
  • Allow for a proper document type printed on the document ("Credit note" instead of "Invoice").
  • Calculate sign reversals based both on owner type and document type (invoice/credit note).

owner-report.scm

This report will display a transaction history for an owner (invoices and payments). It distinguishes between invoice splits and payment splits based on the transaction type (currently can be 'I' for invoice and 'P' for payment). If credit notes are introduced in the business logic as a negative invoice, the invoice splits would still have the 'I' transaction type and payment splits would still have the 'P' transaction type. Hence this report is not affected. If however a new transaction type is introduced for credit notes (say 'C'), this report will no longer show the credit note splits.

TODO
  • No changes required, unless a new transaction type is introduced for credit notes.

aging.scm

Note: this is the base report for both the payables aging and the receivables aging reports.

This report uses the positive=invoice, negative=payment assumption. It doesn't however list separate splits in detail. It only creates sums for splits that increase or decrease open invoices or overpayments. In that calculation it doesn't really matter whether a split was actually an invoice or a payment split. The sums still add up correctly with credit notes (negative invoice splits) and credit note payments (positive invoice splits). So this report is most likely not affected.

TODO
  • No changes required.