mirror of
https://github.com/salesagility/SuiteCRM.git
synced 2025-01-03 09:08:37 +00:00
156 lines
3.1 KiB
PHP
Executable File
156 lines
3.1 KiB
PHP
Executable File
<?php
|
|
$viewdefs ['ProjectTask'] =
|
|
array(
|
|
'DetailView' =>
|
|
array(
|
|
'templateMeta' =>
|
|
array(
|
|
'maxColumns' => '2',
|
|
'widths' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'label' => '10',
|
|
'field' => '30',
|
|
),
|
|
1 =>
|
|
array(
|
|
'label' => '10',
|
|
'field' => '30',
|
|
),
|
|
),
|
|
'includes' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'file' => 'modules/ProjectTask/ProjectTask.js',
|
|
),
|
|
),
|
|
'form' =>
|
|
array(
|
|
'buttons' =>
|
|
array(
|
|
0 => 'EDIT',
|
|
1 => 'DUPLICATE',
|
|
2 => 'DELETE',
|
|
),
|
|
'hideAudit' => true,
|
|
),
|
|
'useTabs' => true,
|
|
'tabDefs' =>
|
|
array(
|
|
'DEFAULT' =>
|
|
array(
|
|
'newTab' => true,
|
|
'panelDefault' => 'expanded',
|
|
),
|
|
'LBL_PANEL_TIMELINE' =>
|
|
array(
|
|
'newTab' => true,
|
|
'panelDefault' => 'expanded',
|
|
),
|
|
),
|
|
'syncDetailEditViews' => true,
|
|
),
|
|
'panels' =>
|
|
array(
|
|
'default' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
0 => 'name',
|
|
1 => 'status',
|
|
),
|
|
1 =>
|
|
array(
|
|
0 => 'date_start',
|
|
1 => 'date_finish',
|
|
),
|
|
2 =>
|
|
array(
|
|
0 => 'priority',
|
|
1 => 'percent_complete',
|
|
),
|
|
3 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'project_name',
|
|
'customCode' => '<a href="index.php?module=Project&action=DetailView&record={$fields.project_id.value}">{$fields.project_name.value} </a>',
|
|
'label' => 'LBL_PARENT_ID',
|
|
),
|
|
1 => 'task_number',
|
|
),
|
|
4 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'assigned_user_name',
|
|
'label' => 'LBL_ASSIGNED_USER_ID',
|
|
),
|
|
),
|
|
5 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'description',
|
|
),
|
|
),
|
|
),
|
|
'LBL_PANEL_TIMELINE' =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
0 => 'estimated_effort',
|
|
1 =>
|
|
array(
|
|
'name' => 'actual_effort',
|
|
'label' => 'LBL_ACTUAL_EFFORT',
|
|
),
|
|
),
|
|
1 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'predecessors',
|
|
'label' => 'LBL_PREDECESSORS',
|
|
),
|
|
1 =>
|
|
array(
|
|
'name' => 'relationship_type',
|
|
'studio' => 'visible',
|
|
'label' => 'LBL_RELATIONSHIP_TYPE',
|
|
),
|
|
),
|
|
2 =>
|
|
array(
|
|
0 => 'order_number',
|
|
1 =>
|
|
array(
|
|
'name' => 'milestone_flag',
|
|
'label' => 'LBL_MILESTONE_FLAG',
|
|
),
|
|
),
|
|
3 =>
|
|
array(
|
|
0 => 'utilization',
|
|
1 => '',
|
|
),
|
|
4 =>
|
|
array(
|
|
0 =>
|
|
array(
|
|
'name' => 'duration',
|
|
'label' => 'LBL_DURATION',
|
|
),
|
|
1 =>
|
|
array(
|
|
'name' => 'duration_unit',
|
|
'label' => 'LBL_DURATION_UNIT',
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|