diff --git a/site/views/elements/jqGrid.ctp b/site/views/elements/jqGrid.ctp index 5494729..e959ba9 100644 --- a/site/views/elements/jqGrid.ctp +++ b/site/views/elements/jqGrid.ctp @@ -130,12 +130,12 @@ foreach ($jqGridColumns AS $header => &$col) { elseif ($col['formatter'] === 'currency') { // Use our custom formatting for currency $col['formatter'] = array('--special' => 'currencyFormatter'); - $default['width'] = 85; + $default['width'] = 65; $default['align'] = 'right'; } elseif ($col['formatter'] === 'date') { $default['formatoptions'] = array('newformat' => 'm/d/Y'); - $default['width'] = 95; + $default['width'] = 90; $default['align'] = 'center'; } elseif (preg_match("/^(long|short)?name$/", diff --git a/site/views/elements/tenders.ctp b/site/views/elements/tenders.ctp index c14535c..745402f 100644 --- a/site/views/elements/tenders.ctp +++ b/site/views/elements/tenders.ctp @@ -5,7 +5,7 @@ $cols = array(); $cols['Date'] = array('index' => 'Transaction.stamp', 'formatter' => 'date'); $cols['Customer'] = array('index' => 'Customer.name', 'formatter' => 'longname'); $cols['Item'] = array('index' => 'Tender.name', 'formatter' => 'longname'); -$cols['Type'] = array('index' => 'TenderType.name', 'formatter' => 'name'); +$cols['Type'] = array('index' => 'TenderType.name', 'formatter' => 'shortname'); $cols['Comment'] = array('index' => 'Tender.comment', 'formatter' => 'comment'); $cols['Amount'] = array('index' => 'LedgerEntry.amount', 'formatter' => 'currency'); $cols['Sub-Total'] = array('index' => 'subtotal-LedgerEntry.amount', 'formatter' => 'currency');