Skip to content

Commit

Permalink
Fix regression Product ref not visible
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Mar 19, 2016
1 parent aa7eb49 commit f0eb8ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions htdocs/comm/propal/class/propal.class.php
Expand Up @@ -2836,6 +2836,7 @@ function getLinesArray()
$this->lines[$i]->description = $obj->description;
$this->lines[$i]->fk_product = $obj->fk_product;
$this->lines[$i]->ref = $obj->ref;
$this->lines[$i]->product_ref = $obj->ref;
$this->lines[$i]->entity = $obj->entity; // Product entity
$this->lines[$i]->product_label = $obj->product_label;
$this->lines[$i]->product_desc = $obj->product_desc;
Expand Down
1 change: 1 addition & 0 deletions htdocs/compta/facture/class/facture.class.php
Expand Up @@ -1125,6 +1125,7 @@ function fetch_lines()
$line->label = $objp->custom_label; // deprecated
$line->desc = $objp->description; // Description line
$line->product_type = $objp->product_type; // Type of line
$line->ref = $objp->product_ref; // Ref product
$line->product_ref = $objp->product_ref; // Ref product
$line->libelle = $objp->product_label; // TODO deprecated
$line->product_label = $objp->product_label; // Label product
Expand Down

0 comments on commit f0eb8ac

Please sign in to comment.