Announcement

Collapse
No announcement yet.

Knowledge Articles / Categories - Navigation on the left problem

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

  • Knowledge Articles / Categories - Navigation on the left problem

    See bug report at github: https://github.com/espocrm/espocrm/issues/3145

    I've some extra information to share, which I hope will help with this issue.



    I did rebuild the category paths. Otherwise, I would not have submitted a possible bug.

    I investigated further in my customizations of the KnowledgeArticleCategory entity. I've got these custom files:

    Code:
    www-data@nvkh-crm:~/crm$ find custom/ | grep -i knowledgebasecat
    custom/Espo/Custom/Resources/metadata/clientDefs/KnowledgeBaseCategory.json
    custom/Espo/Custom/Resources/metadata/scopes/KnowledgeBaseCategory.json
    custom/Espo/Custom/Resources/metadata/entityDefs/KnowledgeBaseCategory.json
    custom/Espo/Custom/Resources/metadata/formula/KnowledgeBaseCategory.json
    Carefull removing files and rebuilding, rebuilding the category path, clearing the cache etc.,
    I narrowed the problem down to this file:

    Code:
    custom/Espo/Custom/Resources/metadata/formula/KnowledgeBaseCategory.json
    It contains following script:

    Code:
    ifThen(string\lowerCase(parent.name) == 'dynamis',
       $matches = string\matchExtract(name, '/dynamis\s*[#]([0-9]+)/i');
       ifThen(array\length($matches) > 0,
          $nr = array\at($matches, 0);
          ifThen($nr,
             $nr = number\parseInt($nr);
             order = $nr;
          );
        );
    );​
    I eventually completely commented it out, which still didn't fix the problem.

    As a last resort, I cleared the formula completely, i.e. no formula anymore.

    After that, when I did the rebuild of EspoCRM, clearing the cache and the category path rebuild,
    Ctrl-F5 and then it works again.

    I hope this helps.



  • #2
    thanks for sharing. using formula on category type cause issues.
    Rabii
    Web Dev

    Comment

    Working...
    X