我正在使用opencart 2.2.0。我有两个客户组-默认客户和批发客户。在我的网站上, price
字段用于默认组,并且 wholesale
字段用于批发客户组。我还补充道 wholesale
“特殊”选项卡中的字段(到 oc_product_special
表),一切正常(它记住admin中的值,并通过前端两个组的特殊价格添加到cart中。)我唯一的问题是它在前端没有正确显示。这意味着它显示了特殊价值 price
两个客户组的字段,而不是显示 wholesale
批发客户特价。我找到了问题所在-在 model/catalog/product file
. 我想知道如何修改下面的查询,以便我可以包括 wholesale
字段,因为只有这样我才能在前端显示它。我的问题是:
$query = $this->db->query("SELECT DISTINCT *, pd.name AS name, p.image, m.name AS manufacturer, (SELECT price FROM " . DB_PREFIX . "product_discount pd2 WHERE pd2.product_id = p.product_id AND pd2.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND pd2.quantity = '1' AND ((pd2.date_start = '0000-00-00' OR pd2.date_start < NOW()) AND (pd2.date_end = '0000-00-00' OR pd2.date_end > NOW())) ORDER BY pd2.priority ASC, pd2.price ASC LIMIT 1) AS discount,**(SELECT price FROM " . DB_PREFIX . "product_special ps WHERE ps.product_id = p.product_id AND ps.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND ((ps.date_start = '0000-00-00' OR ps.date_start < NOW()) AND (ps.date_end = '0000-00-00' OR ps.date_end > NOW())) ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special,**(SELECT points FROM " . DB_PREFIX . "product_reward pr WHERE pr.product_id = p.product_id AND customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "') AS reward, (SELECT ss.name FROM " . DB_PREFIX . "stock_status ss WHERE ss.stock_status_id = p.stock_status_id AND ss.language_id = '" . (int)$this->config->get('config_language_id') . "') AS stock_status, (SELECT wcd.unit FROM " . DB_PREFIX . "weight_class_description wcd WHERE p.weight_class_id = wcd.weight_class_id AND wcd.language_id = '" . (int)$this->config->get('config_language_id') . "') AS weight_class, (SELECT lcd.unit FROM " . DB_PREFIX . "length_class_description lcd WHERE p.length_class_id = lcd.length_class_id AND lcd.language_id = '" . (int)$this->config->get('config_language_id') . "') AS length_class, (SELECT AVG(rating) AS total FROM " . DB_PREFIX . "review r1 WHERE r1.product_id = p.product_id AND r1.status = '1' GROUP BY r1.product_id) AS rating, (SELECT COUNT(*) AS total FROM " . DB_PREFIX . "review r2 WHERE r2.product_id = p.product_id AND r2.status = '1' GROUP BY r2.product_id) AS reviews, p.sort_order FROM " . DB_PREFIX . "product p LEFT JOIN " . DB_PREFIX . "product_description pd ON (p.product_id = pd.product_id) LEFT JOIN " . DB_PREFIX . "product_to_store p2s ON (p.product_id = p2s.product_id) LEFT JOIN " . DB_PREFIX . "manufacturer m ON (p.manufacturer_id = m.manufacturer_id) WHERE p.product_id = '" . (int)$product_id . "' AND pd.language_id = '" . (int)$this->config->get('config_language_id') . "' AND p.status = '1' AND p.date_available <= NOW() AND p2s.store_id = '" . (int)$this->config->get('config_store_id') . "'");
查询的特殊部分是:
(SELECT price FROM " . DB_PREFIX . "product_special ps WHERE ps.product_id = p.product_id AND ps.customer_group_id = '" . (int)$this->config->get('config_customer_group_id') . "' AND ((ps.date_start = '0000-00-00' OR ps.date_start < NOW()) AND (ps.date_end = '0000-00-00' OR ps.date_end > NOW())) ORDER BY ps.priority ASC, ps.price ASC LIMIT 1) AS special,
桑克斯
1条答案
按热度按时间bxpogfeg1#
我解决了这个问题…万一有人被困在同一个地方,我是这样做的:
我在查询中添加了另一行(子查询),其中我定义了如下特殊查询:
以及定义
'special_wholesale' => $query->row['special_wholesale']
,在'special'
中的数组元素catalog/model/catalog/product.php
文件在public function getProduct($product_id)
功能。在那之后,我定义了
$special_wholesale
特色产品控制器文件中的变量(/catalog/controller/module/featured.php
).我做的最后一件事就是打电话给
$product['special_wholesale'];
在featured.php中(/catalog/view/theme/your-theme-name/template/module/featured.tpl)
文件如下:输出为:剔除旧批发价和显示特价批发价。
我希望这能帮助别人。干杯!