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

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gpatri
    Junior Member
    • May 2017
    • 19

    #1

    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';
    }
  • yuri
    EspoCRM product developer
    • Mar 2014
    • 9605

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

    Comment

    Working...