Added a paid-through field for leases. Now I just need to add it to the grid query, although it's a change that can wait.

git-svn-id: file:///svn-source/pmgr/branches/invoice_receipt_20090629/site@343 97e9348a-65ac-dc4b-aefc-98561f571b83
This commit is contained in:
abijah
2009-07-15 09:18:56 +00:00
parent 85cc6d7c6a
commit dd7da1489d
4 changed files with 106 additions and 21 deletions

View File

@@ -37,6 +37,7 @@ $rows = array(array('ID', $lease['id']),
array('Closed', FormatHelper::date($lease['close_date'], true)),
array('Deposit', FormatHelper::currency($lease['deposit'])),
array('Rent', FormatHelper::currency($lease['rent'])),
array('Paid Through', FormatHelper::date($lease['paid_through'], true)),
array('Comment', $lease['comment']));