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

    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
    Member
    • Mar 2014
    • 8442

    #2
    Here's the fix: https://github.com/espocrm/espocrm/c...8e307e4af5df60
    If you find EspoCRM good, we would greatly appreciate if you could give the project a star on GitHub. We believe our work truly deserves more recognition. Thanks.

    Comment

    Working...