Diff
556
583
583
products.php
  |
81 | 81 | | function &execute() { |
| |
82 | 82 | | global $osC_Database, $osC_Language, $osC_Image; |
| |
83 | 83 | | |
  |
84 | | - | $Qlisting = $osC_Database->query('select distinct p.*, pd.*, m.*, if(s.status, s.specials_new_products_price, null) as specials_new_products_price, if(s.status, s.specials_new_products_price, p.products_price) as final_price, i.image from :table_products p left join :table_manufacturers m using(manufacturers_id) left join :table_specials s on (p.products_id = s.products_id) left join :table_products_images i on (p.products_id = i.products_id and i.products_images_groups_id = :products_images_groups_id), :table_products_description pd, :table_categories c, :table_products_to_categories p2c where p.products_status = 1 and p.products_id = pd.products_id and pd.language_id = :language_id and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id'); |
| |
| 84 | + | $Qlisting = $osC_Database->query('select distinct p.*, pd.*, m.*, if(s.status, s.specials_new_products_price, null) as specials_new_products_price, if(s.status, s.specials_new_products_price, p.products_price) as final_price, i.image from :table_products p left join :table_manufacturers m using(manufacturers_id) left join :table_specials s on (p.products_id = s.products_id) left join :table_products_images i on (p.products_id = i.products_id and i.products_images_groups_id = :products_images_groups_id and i.default_flag = :default_flag), :table_products_description pd, :table_categories c, :table_products_to_categories p2c where p.products_status = 1 and p.products_id = pd.products_id and pd.language_id = :language_id and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id'); |
|
85 | 85 | | $Qlisting->bindTable(':table_products', TABLE_PRODUCTS); |
| |
86 | 86 | | $Qlisting->bindTable(':table_manufacturers', TABLE_MANUFACTURERS); |
| |
87 | 87 | | $Qlisting->bindTable(':table_specials', TABLE_SPECIALS); |
| |
|
|
 |
… |
|
90 | 90 | | $Qlisting->bindTable(':table_categories', TABLE_CATEGORIES); |
| |
91 | 91 | | $Qlisting->bindTable(':table_products_to_categories', TABLE_PRODUCTS_TO_CATEGORIES); |
| |
92 | 92 | | $Qlisting->bindInt(':products_images_groups_id', $osC_Image->getID('default')); |
  |
| 93 | + | $Qlisting->bindInt(':default_flag', 1); |
  |
93 | 94 | | $Qlisting->bindInt(':language_id', $osC_Language->getID()); |
| |
94 | 95 | | |
| |
95 | 96 | | if ($this->hasCategory()) { |
|