Forum

[SOLVED] Planning s...
 
Notifications
Retirer tout

[SOLVED] Planning screen

2 Posts
2 Utilisateurs
0 Reactions
3,660 Vu
(@ma_bou)
Posts: 24
Trusted Member
Début du sujet
 
[#5033]

Hello,

I'm on version 7.0.0.

Each time I acess the planning screen, an error pops-up saying :

"Technical issue occured possibly due to bad network connection.
Please try again.
If issue persists, please contact your administrator.
Contact your administrator.
(detailed error is reported in log file)"

The log shows nothing on this matter and the planning screen seems to work properly.

Thanks


 
Posté : 21/03/2018 2:13 pm
(@babynus)
Posts: 14952
Membre Admin
 

This issue has already been identified.
It is ticket #3270

Fix is to move line 642 in /view/js/jsGantt.js after line 643, this way, from :

          if (vList[vTask].getIsOnCriticalPath()=='1' && vList.getIsOnCriticalPath()=='1') color=vCriticalPathColor;
          if(vTask!=null && vList[vTask].getVisible()==1 && vList.getVisible()==1) {        

to

          if(vTask!=null && vList[vTask].getVisible()==1 && vList.getVisible()==1) {
            if (vList[vTask].getIsOnCriticalPath()=='1' && vList.getIsOnCriticalPath()=='1') color=vCriticalPathColor;

We'll publish patched version soon


 
Posté : 21/03/2018 2:49 pm
Share:
Retour en haut