Skip to content
Snippets Groups Projects
Commit d6b0fdc9 authored by Prasad's avatar Prasad
Browse files

Merge branch '1785' into 'master'

Fixes #1785: ProjectTasks class file $list_fields incorrect

Closes #1785

See merge request !1151
parents a528524c 9e3a674d
No related branches found
No related tags found
1 merge request!1151Fixes #1785: ProjectTasks class file $list_fields incorrect
......@@ -41,12 +41,12 @@ class ProjectTask extends CRMEntity {
var $list_fields = Array (
/* Format: Field Label => Array(tablename, columnname) */
// tablename should not have prefix 'vtiger_'
'Project Task Name'=> Array('projecttask', 'projecttaskname'),
'Start Date'=> Array('projecttask', 'startdate'),
'End Date'=> Array('projecttask', 'enddate'),
'Type'=>Array('projecttask','projecttasktype'),
'Progress'=>Array('projecttask','projecttaskprogress'),
'Assigned To' => Array('crmentity','smownerid')
'Project Task Name'=> Array('projecttask' => 'projecttaskname'),
'Start Date'=> Array('projecttask' => 'startdate'),
'End Date'=> Array('projecttask' => 'enddate'),
'Type'=>Array('projecttask' => 'projecttasktype'),
'Progress'=>Array('projecttask' => 'projecttaskprogress'),
'Assigned To' => Array('crmentity' => 'smownerid')
);
var $list_fields_name = Array(
......
  • Contributor

    @prasad the commit didn't update the Project zip package in vtigercrm/packages/vtiger/optional/Projects.zip. Does that get automatically re-built before you release or have you just forgot?

  • Author Maintainer

    @lord_alan - bundling packages would be done before release (as there could be multiple MRs)

  • Contributor

    @prasad 👍

0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment