init
This commit is contained in:
86
modules/ev_Orders/metadata/listviewdefs.php
Normal file
86
modules/ev_Orders/metadata/listviewdefs.php
Normal file
@@ -0,0 +1,86 @@
|
||||
<?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,
|
||||
),
|
||||
);
|
||||
Reference in New Issue
Block a user