Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Fix tipo 2, mpn en producto (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
danidomen authored and mdogo committed Nov 6, 2017
1 parent 80f2433 commit 3aebd42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dfTools.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ public static function getAvailableProductsForLanguage($id_lang, $id_shop, $limi
m.name AS manufacturer,
pa.__MPN__ AS mpn,
pa.ean13 AS ean13,
IF(isnull(pa.id_product), p.__MPN__ , pa.__MPN__) AS mpn,
IF(isnull(pa.id_product), p.ean13 , pa.ean13) AS ean13,
pl.name,
pl.description,
Expand Down

0 comments on commit 3aebd42

Please sign in to comment.