2
0
forked from Wavyzz/dolibarr

Fix: Use correct object

This commit is contained in:
Laurent Destailleur
2012-08-08 22:11:08 +02:00
parent 2620abc6a0
commit 32a1301a92
2 changed files with 2 additions and 2 deletions

View File

@@ -106,7 +106,7 @@ class ActionsCardProduct
$this->tpl['description'] = nl2br($this->description);
// Statut
$this->tpl['status'] = $this->getLibStatut(2);
$this->tpl['status'] = $this->object->getLibStatut(2);
// Note
$this->tpl['note'] = nl2br($this->note);

View File

@@ -105,7 +105,7 @@ class ActionsCardService
$this->tpl['description'] = nl2br($this->description);
// Statut
$this->tpl['status'] = $this->getLibStatut(2);
$this->tpl['status'] = $this->object->getLibStatut(2);
// Note
$this->tpl['note'] = nl2br($this->note);