代码之家  ›  专栏  ›  技术社区  ›  Nancy

mysql查询中包含批发字段

  •  0
  • Nancy  · 技术社区  · 7 年前

    我正在使用OpenCart 2.2.0。我有两个客户群-默认客户和批发客户。在我的网站上, price 字段用于默认组,并且 wholesale 字段用于批发客户组。我还补充说 批发 “特殊”选项卡中的字段(到 oc_product_special table)一切都很好(它记住了admin中的值,并且通过前端两个组的特价添加到cart中)我唯一的问题是它在前端没有正确显示。意思是它从特殊的 价格 两个客户组的字段,而不是显示 批发 批发客户特价。我找到了问题所在-在 model/catalog/product file 是的。我想知道如何修改下面的查询,以便包括 批发 因为只有这样我才能在前端显示。我的问题是:

    $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 回复  |  直到 7 年前
        1
  •  0
  •   Nancy    7 年前

    我解决了这个问题…如果有人被困在同一个地方,我就这样做了:

    向查询添加了另一行(子查询) ,这里我定义了特殊的批发:

    SELECT wholesale 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.wholesale ASC LIMIT 1) AS special_wholesale
    

    以及定义的 '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) 像这样的文件:

    <font size="2" color="red"> <span class="price-new"><?php echo "VP:" . $product['special_wholesale']; ?></span>&nbsp;<span class="price-old"><?php echo "VP:". $product['wholesale']; ?></span></font></br>
    

    其产出为:剔除旧批发价,展示特价批发价。

    我希望这能帮助别人。干杯!