init
This commit is contained in:
59
modules/EcmWorkCards/metadata/listviewdefs.php
Normal file
59
modules/EcmWorkCards/metadata/listviewdefs.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
//echo '<script type="text/javascript" src="modules/EcmWorkCards/ListViewDocumentReady.js"></script>';
|
||||
$module_name = 'EcmWorkCards';
|
||||
$listViewDefs [$module_name] = array (
|
||||
'DATE' => array (
|
||||
'type' => 'datetime',
|
||||
'label' => 'LBL_DATE',
|
||||
'link' => 'true',
|
||||
'width' => '1',
|
||||
'default' => true,
|
||||
'align' => 'right',
|
||||
),
|
||||
'WORKER_NAME' => array (
|
||||
'type' => 'varchar',
|
||||
'label' => 'LBL_WORKER_NAME',
|
||||
'width' => '5',
|
||||
'default' => true,
|
||||
'align' => 'left',
|
||||
),
|
||||
'PRODUCT_NAME' => array (
|
||||
'label' => 'Produkt',
|
||||
'width' => '5',
|
||||
'default' => true,
|
||||
'sortable'=>false,
|
||||
'align' => 'left',
|
||||
),
|
||||
'ACTION_NAME' => array (
|
||||
'label' => 'Czynność',
|
||||
'link' => false,
|
||||
'width' => '5',
|
||||
'default' => true,
|
||||
'sortable'=>false,
|
||||
'align' => 'left',
|
||||
),
|
||||
'TIME_FROM' => array (
|
||||
'label' => 'Czas od do',
|
||||
'width' => '5',
|
||||
'default' => true,
|
||||
'sortable'=>false,
|
||||
'align' => 'left',
|
||||
),
|
||||
'QUANTITY' => array(
|
||||
'width' => '5',
|
||||
'label' => 'Ilość',
|
||||
'align' => 'right',
|
||||
'default' => true,
|
||||
),
|
||||
|
||||
'DESCRIPTION' => array (
|
||||
'label' => 'Opis',
|
||||
'link' => false,
|
||||
'width' => '10',
|
||||
'sortable'=>false,
|
||||
'default' => true,
|
||||
'align' => 'left',
|
||||
),
|
||||
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user