Skip to content
Snippets Groups Projects
Commit a4a01de8 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Missing label

parent 54e28039
No related branches found
No related tags found
No related merge requests found
...@@ -206,7 +206,7 @@ function show_array_actions_to_do($max=5) ...@@ -206,7 +206,7 @@ function show_array_actions_to_do($max=5)
include_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php'; include_once DOL_DOCUMENT_ROOT.'/societe/class/client.class.php';
$sql = "SELECT a.id, a.label, a.datep as dp, a.datep2 as dp2, a.fk_user_author, a.percent,"; $sql = "SELECT a.id, a.label, a.datep as dp, a.datep2 as dp2, a.fk_user_author, a.percent,";
$sql.= " c.code, c.libelle,"; $sql.= " c.code, c.libelle as type_label,";
$sql.= " s.nom as sname, s.rowid, s.client"; $sql.= " s.nom as sname, s.rowid, s.client";
$sql.= " FROM ".MAIN_DB_PREFIX."c_actioncomm as c LEFT JOIN "; $sql.= " FROM ".MAIN_DB_PREFIX."c_actioncomm as c LEFT JOIN ";
$sql.= " ".MAIN_DB_PREFIX."actioncomm as a ON c.id = a.fk_action"; $sql.= " ".MAIN_DB_PREFIX."actioncomm as a ON c.id = a.fk_action";
...@@ -243,7 +243,7 @@ function show_array_actions_to_do($max=5) ...@@ -243,7 +243,7 @@ function show_array_actions_to_do($max=5)
print '<tr '.$bc[$var].'>'; print '<tr '.$bc[$var].'>';
$staticaction->type_code=$obj->code; $staticaction->type_code=$obj->code;
$staticaction->libelle=$obj->label; $staticaction->label=($obj->label?$obj->label:$obj->type_label);
$staticaction->id=$obj->id; $staticaction->id=$obj->id;
print '<td>'.$staticaction->getNomUrl(1,34).'</td>'; print '<td>'.$staticaction->getNomUrl(1,34).'</td>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment