39 lines
790 B
PHP
39 lines
790 B
PHP
<?php
|
|
// created: 2013-12-18 10:28:57
|
|
$subpanel_layout['list_fields'] = array (
|
|
'status' =>
|
|
array (
|
|
'name' => 'status',
|
|
'vname' => 'LBL_STATUS',
|
|
'module' => 'EcmSales',
|
|
'width' => '5%',
|
|
'default' => true,
|
|
),
|
|
'document_no' =>
|
|
array (
|
|
'name' => 'document_no',
|
|
'vname' => 'LBL_DOCUMENT_NO',
|
|
'module' => 'EcmSales',
|
|
'widget_class' => 'SubPanelDetailViewLink',
|
|
'width' => '15%',
|
|
'default' => true,
|
|
),
|
|
'total' =>
|
|
array (
|
|
'name' => 'total',
|
|
'vname' => 'LBL_TOTAL',
|
|
'module' => 'EcmSales',
|
|
'width' => '15%',
|
|
'default' => true,
|
|
),
|
|
'register_date' =>
|
|
array (
|
|
'name' => 'register_date',
|
|
'vname' => 'LBL_REGISTER_DATE',
|
|
'module' => 'EcmSales',
|
|
'width' => '10%',
|
|
'default' => true,
|
|
),
|
|
);
|
|
?>
|