// Fixed #PSCFV-44 : Wrong product references were displayed when editing a supply order

This commit is contained in:
bMancone
2012-04-30 12:25:53 +00:00
parent 682e8fbb6a
commit 98c5d6cc4f
+1 -3
View File
@@ -258,9 +258,7 @@ class SupplyOrderCore extends ObjectModel
$query->select('
s.*,
IFNULL(CONCAT(pl.name, \' : \', GROUP_CONCAT(agl.name, \' - \', al.name SEPARATOR \', \')), pl.name) as name_displayed,
p.reference as reference,
p.ean13 as ean13');
IFNULL(CONCAT(pl.name, \' : \', GROUP_CONCAT(agl.name, \' - \', al.name SEPARATOR \', \')), pl.name) as name_displayed');
$query->from('supply_order_detail', 's');