mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2024-11-22 07:52:36 +00:00
53 lines
1.1 KiB
PHP
Executable File
53 lines
1.1 KiB
PHP
Executable File
<?php
|
|
$popupMeta = array(
|
|
'moduleMain' => 'AOS_Contracts',
|
|
'varName' => 'AOS_Contracts',
|
|
'orderBy' => 'aos_contracts.name',
|
|
'whereClauses' => array(
|
|
'name' => 'aos_contracts.name',
|
|
'status' => 'aos_contracts.status',
|
|
'total_contract_value' => 'aos_contracts.total_contract_value',
|
|
'start_date' => 'aos_contracts.start_date',
|
|
'end_date' => 'aos_contracts.end_date',
|
|
),
|
|
'searchInputs' => array(
|
|
1 => 'name',
|
|
3 => 'status',
|
|
4 => 'total_contract_value',
|
|
5 => 'start_date',
|
|
6 => 'end_date',
|
|
),
|
|
'searchdefs' => array(
|
|
'name' =>
|
|
array(
|
|
'type' => 'name',
|
|
'label' => 'LBL_NAME',
|
|
'width' => '10%',
|
|
'name' => 'name',
|
|
),
|
|
'status' =>
|
|
array(
|
|
'type' => 'enum',
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_STATUS',
|
|
'sortable' => false,
|
|
'width' => '10%',
|
|
'name' => 'status',
|
|
),
|
|
'start_date' =>
|
|
array(
|
|
'type' => 'date',
|
|
'label' => 'LBL_START_DATE',
|
|
'width' => '10%',
|
|
'name' => 'start_date',
|
|
),
|
|
'end_date' =>
|
|
array(
|
|
'type' => 'date',
|
|
'label' => 'LBL_END_DATE',
|
|
'width' => '10%',
|
|
'name' => 'end_date',
|
|
),
|
|
),
|
|
);
|