Forum

[SOLVED] KANBAN doe...
 
Notifications
Retirer tout

[SOLVED] KANBAN does not work anymore on v9.0.2

2 Posts
1 Utilisateurs
0 Reactions
1,456 Vu
(@bvd)
Posts: 124
Active Member
Début du sujet
 
[#7197]

Hi,

Same behaviour, same problem, same version, but solution provided here ( https://track.projeqtor.org/view/main.php?directAccess=true&objectClass=Ticket&objectId=5178) did'nt work for me.

Here are the lines modified in /var/www/html/pilot/view/kanbanView.php :

$query="SELECT $tableName.id as id,
                $tableName.name as name,
                $tableName.id".$typeKanbanC."Type as idtickettype,
                $tableName.idStatus as idstatus,
                if(property_exists($typeKanbanC, "idUrgency"))$query.="$tableName.idUrgency as idurgency,";
                $tableName.idProject as idproject,";

Something wrong ?

Regards


 
Posté : 14 Jan PM 13:011
(@bvd)
Posts: 124
Active Member
Début du sujet
 

SOLVED : his is the right way to correct (I did a mistake) :
 $query="SELECT $tableName.id as id,
                $tableName.name as name,
                $tableName.id".$typeKanbanC."Type as idtickettype,
                $tableName.idStatus as idstatus,
                $tableName.idProject as idproject,";
    if(property_exists($typeKanbanC, "idUrgency"))$query.="$tableName.idUrgency as idurgency,";
    if(property_exists($typeKanbanC, "idPriority")) {


 
Posté : 14 Jan PM 13:011
Share:
Retour en haut