Commit fe48c7301f19c6ac89b23befe28f8d925780cef2
1 parent
1b898c16
20.07.16
Showing
2 changed files
with
2 additions
and
3 deletions
Show diff stats
common/modules/product/models/Export.php
... | ... | @@ -31,7 +31,7 @@ class Export extends Model { |
31 | 31 | }*/ |
32 | 32 | $mods = []; |
33 | 33 | |
34 | - //$filterString = $this->convertFilterToString($product->getFilters()); | |
34 | + $filterString = $this->convertFilterToString($product->getFilters()); | |
35 | 35 | |
36 | 36 | foreach ($product->variantsWithFilters as $variant) |
37 | 37 | { |
... | ... | @@ -70,7 +70,7 @@ class Export extends Model { |
70 | 70 | $product->name, |
71 | 71 | '', |
72 | 72 | ((! empty($product->description)) ? $product->description : ''), |
73 | - '',//$filterString, | |
73 | + $filterString, | |
74 | 74 | (!empty($product->variant)) ? $product->variant->price_old : '', |
75 | 75 | (!empty($product->variant)) ? $product->variant->price : '', |
76 | 76 | intval($product->akciya), | ... | ... |