git-svn-id: file:///svn-source/pmgr/branches/yafr_20090716@402 97e9348a-65ac-dc4b-aefc-98561f571b83
45 lines
1.9 KiB
PHP
45 lines
1.9 KiB
PHP
<?php /* -*- mode:PHP -*- */
|
|
|
|
// Define the table columns
|
|
$cols = array();
|
|
$cols['Transaction'] = array('index' => 'Transaction.id', 'formatter' => 'id');
|
|
$cols['Entry'] = array('index' => 'StatementEntry.id', 'formatter' => 'id');
|
|
|
|
$cols['Date'] = array('index' => 'Transaction.stamp', 'formatter' => 'date');
|
|
$cols['Effective'] = array('index' => 'StatementEntry.effective_date', 'formatter' => 'date');
|
|
$cols['Through'] = array('index' => 'StatementEntry.through_date', 'formatter' => 'date');
|
|
|
|
$cols['Account'] = array('index' => 'Account.name', 'formatter' => 'name');
|
|
|
|
$cols['Customer'] = array('index' => 'Customer.name', 'formatter' => 'longname');
|
|
$cols['Lease'] = array('index' => 'Lease.number', 'formatter' => 'id');
|
|
$cols['Unit'] = array('index' => 'Unit.name', 'formatter' => 'shortname');
|
|
|
|
$cols['Comment'] = array('index' => 'StatementEntry.comment', 'formatter' => 'comment', 'width'=>150);
|
|
|
|
$cols['Charge'] = array('index' => 'charge', 'formatter' => 'currency');
|
|
$cols['Payment'] = array('index' => 'payment', 'formatter' => 'currency');
|
|
|
|
$cols['Applied'] = array('index' => "applied", 'formatter' => 'currency');
|
|
$cols['Sub-Total'] = array('index' => 'subtotal-balance', 'formatter' => 'currency', 'sortable' => false);
|
|
|
|
|
|
if (isset($subtotal_column))
|
|
$cols['Sub-Total']['index'] =
|
|
'subtotal-' . $cols[$subtotal_column]['index'];
|
|
|
|
// Include custom data
|
|
$grid->customData(compact('statement_entry_id'));
|
|
|
|
// Render the grid
|
|
$grid
|
|
->columns($cols)
|
|
->sortField('Date')
|
|
->defaultFields(array('Entry', 'Date', 'Charge', 'Payment'))
|
|
->searchFields(array('Customer', 'Unit'))
|
|
->render($this, isset($config) ? $config : null,
|
|
array_diff(array_keys($cols), array('Through', 'Lease',
|
|
'Applied', 'Sub-Total',
|
|
'Comment')));
|
|
|