87 lines
1.9 KiB
PHP
87 lines
1.9 KiB
PHP
|
|
<?php
|
||
|
|
|
||
|
|
if (!defined('sugarEntry') || !sugarEntry) {
|
||
|
|
die('Not A Valid Entry Point');
|
||
|
|
}
|
||
|
|
|
||
|
|
$module_name = 'ev_Orders';
|
||
|
|
$listViewDefs[$module_name] = array(
|
||
|
|
|
||
|
|
'NAME' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_NAME',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'STATUS' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_STATUS',
|
||
|
|
'link' => false,
|
||
|
|
'type' => 'enum',
|
||
|
|
),
|
||
|
|
|
||
|
|
'PARENT_NAME' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_PARENT_NAME',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
|
||
|
|
'CODE' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_PRODUCT_INDEX',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'PRODUCT_NAME' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_PRODUCT_NAME',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
|
||
|
|
'PRODUCT_KIND' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_PRODUCT_KIND',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'PRODUCT_SIZE' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_PRODUCT_SIZE',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'PRODUCT_BRAND' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_PRODUCT_BRAND',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'REGISTER_DATE' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_REGISTER_DATE',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'DELIVERY_DATE' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_SEND_DATE',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'SEND_DATE' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_DELIVERY_DATE',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
'QUANTITY' => array(
|
||
|
|
'width' => '15',
|
||
|
|
'default' => true,
|
||
|
|
'label' => 'LBL_QUANTITY',
|
||
|
|
'link' => false,
|
||
|
|
),
|
||
|
|
);
|