60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
<?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',
|
|
),
|
|
|
|
);
|
|
?>
|