Skip to content

Commit

Permalink
Fix: Bad property
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Feb 17, 2013
1 parent b21cb5b commit 8af34ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions htdocs/expedition/class/expedition.class.php
Expand Up @@ -909,8 +909,8 @@ function fetch_lines()
$line->volume = $obj->volume;
$line->volume_units = $obj->volume_units;

//Invoicing
$line->desc = $obj->product_label;
// For invoicing
$line->desc = $obj->description; // We need ->desc because some code into CommonObject use desc (property defined for other elements)
$line->qty = $obj->qty_shipped;
$line->total_ht = $obj->total_ht;
$line->total_localtax1 = $obj->total_localtax1;
Expand Down

0 comments on commit 8af34ee

Please sign in to comment.