From 75c635a5eaa116150c287b68402d18f23752022c Mon Sep 17 00:00:00 2001 From: Abijah Date: Thu, 5 Dec 2013 02:09:40 +0000 Subject: [PATCH] Added customer ID to customer grid git-svn-id: file:///svn-source/pmgr/branches/v0.3_work@1034 97e9348a-65ac-dc4b-aefc-98561f571b83 --- site/views/elements/customers.ctp | 1 + 1 file changed, 1 insertion(+) diff --git a/site/views/elements/customers.ctp b/site/views/elements/customers.ctp index b2713e5..0f4c78f 100644 --- a/site/views/elements/customers.ctp +++ b/site/views/elements/customers.ctp @@ -2,6 +2,7 @@ // Define the table columns $cols = array(); +$cols['Customer'] = array('index' => 'Customer.id', 'formatter' => 'id'); $cols['Relationship'] = array('index' => 'ContactsCustomer.type', 'formatter' => 'enum'); $cols['Name'] = array('index' => 'Customer.name', 'formatter' => 'longname'); $cols['Last Name'] = array('index' => 'PrimaryContact.last_name', 'formatter' => 'name');