Pay Bills
Status: Alpha
Brought to you by:
dirty
This patch adds a link to each bill where one is the
creditor to set the status to paid, removing the item,
if all transactions are paid.
In order for this patch to work, a new column needs to
be added to the transactions table:
ALTER TABLE `transactions` ADD `paid` ENUM( '0', '1' )
DEFAULT '0' NOT NULL ;
patch for paying bills