git-svn-id: file:///svn-source/pmgr/branches/pre_0.1_work_20090819@802 97e9348a-65ac-dc4b-aefc-98561f571b83
23 lines
1.2 KiB
PHP
23 lines
1.2 KiB
PHP
<?php /* -*- mode:PHP -*- */
|
|
|
|
// Define the table columns
|
|
$cols = array();
|
|
$cols['Account'] = array('index' => 'Account.name', 'formatter' => 'longname');
|
|
$cols['Sequence'] = array('index' => 'Ledger.sequence', 'formatter' => 'id');
|
|
$cols['Open Date'] = array('index' => 'PriorCloseTransaction.stamp', 'formatter' => 'date');
|
|
$cols['Close Date'] = array('index' => 'CloseTransaction.stamp', 'formatter' => 'date');
|
|
$cols['Comment'] = array('index' => 'Ledger.comment', 'formatter' => 'comment');
|
|
$cols['Entries'] = array('index' => 'entries', 'formatter' => 'number');
|
|
$cols['Debits'] = array('index' => 'debits', 'formatter' => 'currency');
|
|
$cols['Credits'] = array('index' => 'credits', 'formatter' => 'currency');
|
|
$cols['Balance'] = array('index' => 'balance', 'formatter' => 'currency');
|
|
|
|
// Render the grid
|
|
$grid
|
|
->columns($cols)
|
|
->sortField('Sequence')
|
|
->defaultFields(array('Sequence'))
|
|
->searchFields(array('Comment'))
|
|
->render($this, isset($config) ? $config : null,
|
|
array_diff(array_keys($cols), array('Account', 'Open Date', 'Comment')));
|