Announcement

Collapse
No announcement yet.

Account tasks panel, don't use tasksPrimary anymore in 5.5.0

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Account tasks panel, don't use tasksPrimary anymore in 5.5.0

    Before upgrade from 5.4.3, Account show tasksPrimary (all tasks, including childs tasks). In 5.5.0, we have only direct Account tasks.

    In client/view/panel source, code use :
    Code:
    setup: function () {
    this.parentScope = this.model.name;
    this.link = 'tasks';
    this.panelName = 'tasksSide';
    this.defs.create = true;
    this.url = this.model.name + '/' + this.model.id + '/' + this.link;
    if (this.parentScope == 'Account') {
    this.link = 'tasksPrimary';
    }

  • #2
    Here's the fix: https://github.com/espocrm/espocrm/c...8e307e4af5df60

    Comment

    Working...
    X