From fea21b3ea09cc13d2089efb8820fad6ba5294d90 Mon Sep 17 00:00:00 2001 From: abijah Date: Mon, 10 Aug 2009 19:00:02 +0000 Subject: [PATCH] Added the close date to the leases grid, to make it clear which customer leases are still open. Perhaps we should exclude the field by default, and just add it into the customer view page. git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716/site@515 97e9348a-65ac-dc4b-aefc-98561f571b83 --- views/elements/leases.ctp | 1 + 1 file changed, 1 insertion(+) diff --git a/views/elements/leases.ctp b/views/elements/leases.ctp index 2ff2413..10872bb 100644 --- a/views/elements/leases.ctp +++ b/views/elements/leases.ctp @@ -11,6 +11,7 @@ $cols['Deposit'] = array('index' => 'Lease.deposit', 'formatter' => 'cur $cols['Signed'] = array('index' => 'Lease.lease_date', 'formatter' => 'date'); $cols['Move-In'] = array('index' => 'Lease.movein_date', 'formatter' => 'date'); $cols['Move-Out'] = array('index' => 'Lease.moveout_date', 'formatter' => 'date'); +$cols['Closed'] = array('index' => 'Lease.close_date', 'formatter' => 'date'); $cols['Balance'] = array('index' => 'balance', 'formatter' => 'currency'); $cols['Comment'] = array('index' => 'Lease.comment', 'formatter' => 'comment');