This commit is contained in:
Laurent Destailleur 2021-09-28 00:26:58 +02:00
parent 338d5ac56e
commit d3e5e3071b
2 changed files with 4 additions and 2 deletions

View File

@ -411,9 +411,9 @@ if ($id > 0 || $ref) {
// Status of line
print "<td>";
print $ligne->LibStatut($obj->statut, 2);
print '<a class="valignmiddle" href="'.DOL_URL_ROOT.'/compta/prelevement/line.php?id='.$obj->rowid.'&type='.$object->type.'&token='.newToken().'">';
print sprintf("%06s", $obj->rowid);
print $ligne->LibStatut($obj->statut, 2);
print '<span class="paddingleft">'.$obj->rowid.'</span>';
print '</a></td>';
$thirdparty = new Societe($db);

View File

@ -160,6 +160,8 @@ class LignePrelevement
return $langs->trans($this->statuts[$status]).' '.img_picto($langs->trans($this->statuts[$status]), 'statut8', 'class="valignmiddle"');
}
}
//return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
}
/**