Перейти до вмісту
Пошук в
  • Детальніше...
Шукати результати, які ...
Шукати результати в ...

Функция количество проданных товаров в модуле FEATURED


Recommended Posts

Ребята помогитее пожалуйста может кто делал.

 

За основу брал модуль

https://www.opencart.com/index.php?route=marketplace/extension/info&extension_id=15185&filter_license=0&filter_download_id=31&page=12


            Вот эта фунцию перене featured.php (соответсвенно все tpl ипеременные языка заменил)

 

 

 

protected function getTotalBought($product_id, $order_status_id = 0){
                $bought = 0;
                $filter_status = " AND o.order_status_id > 0";
                if($order_status_id ) {
                    $filter_status = " AND o.order_status_id IN (".implode(",",$order_status_id).")";
                }
                $query = $this->db->query("SELECT sum(quantity) as `total` FROM `" . DB_PREFIX . "order_product` op
                    LEFT JOIN `".DB_PREFIX."order` AS o ON op.order_id = o.order_id WHERE op.product_id = ".$product_id.$filter_status);

                if($query->num_rows){
                    return $query->row['total'];
                }
                return 0;
            }

 

 

Но модуль ничего не выводит

 

 

 

Вот все тело featured.php

 

 

 

<?php
class ControllerModuleFeatured extends Controller {
    
            protected function getTotalBought($product_id, $order_status_id = 0){
                $bought = 0;
                $filter_status = " AND o.order_status_id > 0";
                if($order_status_id ) {
                    $filter_status = " AND o.order_status_id IN (".implode(",",$order_status_id).")";
                }
                $query = $this->db->query("SELECT sum(quantity) as `total` FROM `" . DB_PREFIX . "order_product` op
                    LEFT JOIN `".DB_PREFIX."order` AS o ON op.order_id = o.order_id WHERE op.product_id = ".$product_id.$filter_status);

                if($query->num_rows){
                    return $query->row['total'];
                }
                return 0;
            }
            public function index($setting) {
        
        $this->load->language('module/featured');

        $data['heading_title'] = $this->language->get('heading_title');

        $data['text_tax'] = $this->language->get('text_tax');

        $data['button_cart'] = $this->language->get('button_cart');
        $data['button_wishlist'] = $this->language->get('button_wishlist');
        $data['button_compare'] = $this->language->get('button_compare');

        $this->load->model('catalog/product');

        $this->load->model('tool/image');

        $data['products'] = array();

        if (!$setting['limit']) {
            $setting['limit'] = 4;
        }


        if (!empty($setting['product'])) {
            $products = array_slice($setting['product'], 0, (int)$setting['limit']);

            foreach ($products as $product_id) {
                $product_info = $this->model_catalog_product->getProduct($product_id);

                
            if ($product_info) {
            $data['language'] = $this->language;
            $data['sold_items'] = $this->getTotalBought($product_info['product_id']);
        
                    if ($product_info['image']) {
                        $image = $this->model_tool_image->resize($product_info['image'], $setting['width'], $setting['height']);
                    } else {
                        $image = $this->model_tool_image->resize('placeholder.png', $setting['width'], $setting['height']);
                    }

                    if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
                        $price = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')));
                    } else {
                        $price = false;
                    }

                    if ((float)$product_info['special']) {
                        $special = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')));
                    } else {
                        $special = false;
                    }

                    if ($this->config->get('config_tax')) {
                        $tax = $this->currency->format((float)$product_info['special'] ? $product_info['special'] : $product_info['price']);
                    } else {
                        $tax = false;
                    }

                    if ($this->config->get('config_review_status')) {
                        $rating = $product_info['rating'];
                    } else {
                        $rating = false;
                    }

                    $data['products'][] = array(
                        'product_id'  => $product_info['product_id'],
                        'thumb'       => $image,
                        'name'        => $product_info['name'],
                        'description' => utf8_substr(strip_tags(html_entity_decode($product_info['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get('config_product_description_length')) . '..',
                        'price'       => $price,
                        'special'     => $special,
                        'tax'         => $tax,
                        'rating'      => $rating,
                        'reviews'     => $product_info['reviews'],
                        'href'        => $this->url->link('product/product', 'product_id=' . $product_info['product_id'])
                    );
                }
            }
        }

        if ($data['products']) {
            if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/featured.tpl')) {
                return $this->load->view($this->config->get('config_template') . '/template/module/featured.tpl', $data);
            } else {
                return $this->load->view('default/template/module/featured.tpl', $data);
            }
        }
    }
}

 

 

 

 

Надіслати
Поділитися на інших сайтах


фигня все это..

Нагружать магазин не хилым запросои

Нужно создавать отдельную сущность и  в ней хранить количество продаж, тогда это поле будет доступно всегда, и  везде.

Надіслати
Поділитися на інших сайтах

товарищь помог. Может кому пригодится.

 

 

 

        protected function getTotalBought($product_id, $order_status_id = 0){
                $bought = 0;
                $filter_status = " AND o.order_status_id > 0";
                if($order_status_id ) {
                    $filter_status = " AND o.order_status_id IN (".implode(",",$order_status_id).")";
                }
                $query = $this->db->query("SELECT sum(quantity) as `total` FROM `" . DB_PREFIX . "order_product` op
                    LEFT JOIN `".DB_PREFIX."order` AS o ON op.order_id = o.order_id WHERE op.product_id = ".$product_id.$filter_status);
                if($query->num_rows){
                    if (!is_null($query->row['total']))
                        return $query->row['total'];
                    else
                        return 0;
                }
                return 0;

Надіслати
Поділитися на інших сайтах


Створіть аккаунт або увійдіть для коментування

Ви повинні бути користувачем, щоб залишити коментар

Створити обліковий запис

Зареєструйтеся для отримання облікового запису. Це просто!

Зареєструвати аккаунт

Вхід

Уже зареєстровані? Увійдіть тут.

Вхід зараз
  • Зараз на сторінці   0 користувачів

    • Ні користувачів, які переглядиють цю сторінку

×
×
  • Створити...

Important Information

На нашому сайті використовуються файли cookie і відбувається обробка деяких персональних даних користувачів, щоб поліпшити користувальницький інтерфейс. Щоб дізнатися для чого і які персональні дані ми обробляємо перейдіть за посиланням . Якщо Ви натиснете «Я даю згоду», це означає, що Ви розумієте і приймаєте всі умови, зазначені в цьому Повідомленні про конфіденційність.