With the new version (Dec 2007 plus 15Jan SVN patch) I notice that in the "Manage Invoices" section the "Aging" column is populated with the ages, even when the Owing amount is 0.00
This never happened in the older version I used to use (20070525) and makes no sense really when an invoice is paid and processed, it should not have any Age anymore.
The manage invoices page was set up to view all invoices irrespective of whether it was paid or not. However the Aging should be blank logically. Thanks for pointing it out. Will try to put in a fix in the SVN. The ./templates/default/invoices/manage.tpl file should be edited to replace line 112 [code] <td class="index_table">{$invoice.overdue}</td>[/code]with[code] <td class="index_table">{if $invoice.owing > 0}{$invoice.overdue}{/if}</td>[/code]