52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
$module_name = 'ev_Orders';
|
|
$searchdefs[$module_name] = array(
|
|
'templateMeta' => array(
|
|
'maxColumns' => '6',
|
|
'maxColumnsBasic' => '6',
|
|
'widths' => array(
|
|
'label' => '10',
|
|
'field' => '30',
|
|
),
|
|
),
|
|
'layout' => array(
|
|
'basic_search' => array(
|
|
'name',
|
|
'parent_name',
|
|
'status',
|
|
'code',
|
|
'product_name',
|
|
'delivery_date',
|
|
),
|
|
'advanced_search' => array(
|
|
'name',
|
|
'parent_name',
|
|
'status',
|
|
'code',
|
|
'product_name',
|
|
'product_kind' => array(
|
|
'type' => 'enum',
|
|
'options' => 'ecmproducts_product_kind_dom',
|
|
'name' => 'product_kind',
|
|
),
|
|
'product_brand' => array(
|
|
'type' => 'enum',
|
|
'options' => 'ecmproducts_product_brand_dom',
|
|
'name' => 'product_brand',
|
|
),
|
|
'product_size' => array(
|
|
'type' => 'enum',
|
|
'options' => 'ecmproducts_product_size_dom',
|
|
'name' => 'product_size',
|
|
),
|
|
'register_date',
|
|
'send_date',
|
|
'delivery_date',
|
|
'quantity',
|
|
|
|
|
|
),
|
|
),
|
|
);
|