Forum

Welcome to ProjeQtOr new Forum. We migrated old forum to the new website.
You will find all your posts here, with your usual account.
Just one point : you’ll have to reinitialize your password. Use “Lost password” feature.

[SOLVED] KANBAN doe...
 
Notifications
Clear all

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

2 Posts
1 Users
0 Reactions
1,457 Views
(@bvd)
Posts: 124
Active Member
Topic starter
 
[#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


 
Posted : 14 Jan 2021 13H09
(@bvd)
Posts: 124
Active Member
Topic starter
 

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")) {


 
Posted : 14 Jan 2021 13H39
Share:

Scroll to Top