66 lines
1.2 KiB
PHP
Executable File
66 lines
1.2 KiB
PHP
Executable File
<?php
|
|
if (! defined ( 'sugarEntry' ) || ! sugarEntry)
|
|
die ( 'Not A Valid Entry Point' );
|
|
|
|
$listViewDefs ["EcmServiceNews"] = array (
|
|
'STATUS' => array (
|
|
'label' => 'LBL_STATUS',
|
|
'sortable' => true,
|
|
'link' => true,
|
|
'default' => true
|
|
),
|
|
'REGISTER_DATE' => array (
|
|
'label' => 'LBL_REGISTER_DATE',
|
|
'default' => true,
|
|
'link' => true,
|
|
'sortable' => true
|
|
),
|
|
'DOCUMENT_NO' => array (
|
|
'label' => 'LBL_DOCUMENT_NO',
|
|
'default' => true,
|
|
'link' => true,
|
|
'sortable' => true
|
|
),
|
|
'SERVICE_TYPE' => array (
|
|
'label' => 'LBL_TYPE',
|
|
'default' => true,
|
|
'link' => true,
|
|
'sortable' => true
|
|
),
|
|
'REPAIR_STATUS' => array (
|
|
'label' => 'LBL_REPAIR_STATUS',
|
|
'default' => true,
|
|
'link' => true,
|
|
'sortable' => true
|
|
),
|
|
'PRODUCT_NAME' => array (
|
|
'label' => 'LBL_PRODUCT_NAME',
|
|
'default' => true,
|
|
'link' => true,
|
|
'sortable' => true
|
|
),
|
|
'ASSIGNED_USER_NAME' => array(
|
|
'label' => 'LBL_USER',
|
|
'sortable' => true,
|
|
'link' => true,
|
|
'default' => true
|
|
),
|
|
'NUMBER' => array (
|
|
'label' => 'LBL_DOCUMENT_NO',
|
|
'sortable' => true,
|
|
'link' => true,
|
|
'default' => false
|
|
),
|
|
|
|
|
|
|
|
'OPTIONS' => array (
|
|
'label' => 'PDF',
|
|
'default' => true,
|
|
'sortable' => false,
|
|
'align' => 'center'
|
|
)
|
|
)
|
|
;
|
|
|
|
?>
|