sergeevizh Posted April 13, 2019 Report Share Posted April 13, 2019 (edited) Друзья! Подскажите как сделать вывод количества заказов определенного товара в карточке? Я так понимаю, если заказ ушел в статус "Выполнен", нужно произвести подсчет или собрать данные из базы "s_purchases". Edited April 13, 2019 by alexivchenko Quote Link to post Share on other sites
phukortsin Posted April 13, 2019 Report Share Posted April 13, 2019 Как обычно. Сначала выполнить подсчет через SQL-запрос. Затем результат передать в шаблон. И наконец, вывести в самом шаблоне. Quote Link to post Share on other sites
sergeevizh Posted April 13, 2019 Author Report Share Posted April 13, 2019 (edited) Как обычно. Сначала выполнить подсчет через SQL-запрос. Затем результат передать в шаблон. И наконец, вывести в самом шаблоне. Пробовал сделать на основе подсчета просмотра товара, думал получится, но нет. Edited April 13, 2019 by alexivchenko Quote Link to post Share on other sites
sergeevizh Posted April 13, 2019 Author Report Share Posted April 13, 2019 (edited) Спасибо @phukortsin Во View/ProductView.php перед return $this->design->fetch('product.tpl'); вставить // в заказах $q=$this->db->placehold('SELECT sum(pu.amount) am from __purchases pu, __orders o WHERE pu.order_id=o.id and pu.product_id=?', $product->id); $this->db->query($q); $am=(int)$this->db->result('am'); $this->design->assign('product_purchase_count', $am); Для вывода в шаблоне product.tpl В нужное место Продаж - {$product_purchase_count}. Edited April 13, 2019 by alexivchenko Quote Link to post Share on other sites
sergeevizh Posted April 13, 2019 Author Report Share Posted April 13, 2019 Подскажите как сделать, чтобы {$product_purchase_count} отображался и в main.tpl и так же продажи считались если статус заказа в админке "Выполнен" Quote Link to post Share on other sites
shooroop Posted April 14, 2019 Report Share Posted April 14, 2019 Подскажите как сделать, чтобы {$product_purchase_count} отображался и в main.tpl и так же продажи считались если статус заказа в админке "Выполнен" View.php Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.