Zombie Posted March 8, 2011 Share Posted March 8, 2011 Возникла необходимость вывести две, три валюты на странице списка товаров и внутри флаера товара.Чтобы было видно цену товара допустим и в долларах и в рублях (или безналичный расчет) 2-3 вида цены одно под другим. Дайте совет пожалуйста. Link to comment Share on other sites More sharing options...
artyr_n Posted March 8, 2011 Share Posted March 8, 2011 $id_curency - id валюты из админки $currency = new Currency($id_curency); $amount = number_format(Tools::convertPrice(цена товара, $currency), 2, '.', ''); примерно так Link to comment Share on other sites More sharing options...
artyr_n Posted March 9, 2011 Share Posted March 9, 2011 правим файл /themes/ваша тема/product-list.tpl там где хотим что бы появились дополнителные цены вставляем {convertPriceWithCurrency price=$product.price_1 currency=1} {convertPriceWithCurrency price=$product.price_2 currency=2} в файле /category.php ищем $cat_products = $category->getProducts(intval($cookie->id_lang), intval($p), intval($n), $orderBy, $orderWay); после этой строки вставляем $ret_arr = array(); foreach ($cat_products as $cat_product) { $curen_1 = new Currency(1); $curen_2 = new Currency(2); $cat_product['price_1'] = Tools::convertPrice($cat_product['price'],$curen_1); $cat_product['price_2'] = Tools::convertPrice($cat_product['price'],$curen_2); $ret_arr[] = $cat_product; } $cat_products = $ret_arr; Currency(1) - первая валюта из админки Currency(2) - вторая валюта из админки Link to comment Share on other sites More sharing options...
Inshallah Posted April 23, 2011 Share Posted April 23, 2011 Делал как описал artyr_n, но почему-то не работает корректно - вместо цен выводит нули. Prestashop 1.3.1Может есть ещё варианты ? Очень нужно вывести цену в нескольких валютах. Link to comment Share on other sites More sharing options...
Dimitri Yelquin Posted April 23, 2011 Share Posted April 23, 2011 А обновление курса добавленных Вами валют сделали. В самом низу на странице добавления есть такая кнопочка.Хотя, может, дело и не в этом, а в том, что сразу-то Вы не сказали, какая у Вас версия. Сейчас все, как правило, 1.4 в уме держат. Link to comment Share on other sites More sharing options...
artyr_n Posted April 26, 2011 Share Posted April 26, 2011 то что я описал я пробовал на 1.3 Link to comment Share on other sites More sharing options...
Inshallah Posted April 28, 2011 Share Posted April 28, 2011 Вроде понял в чем проблема... модуль filterby глючил. Link to comment Share on other sites More sharing options...
Inshallah Posted April 29, 2011 Share Posted April 29, 2011 Решил проблему путем вставки вышеупомянутого кода прямо в filterby.php.Но заметил другой глюк... если в категории только 1 товар, то дополнительная цены получается нулевой (или равной 1). Например выводит 20$ и 1грн или 0грн под ним (в обоих случаях - и с модулем FilterBy и без него). Link to comment Share on other sites More sharing options...
Recommended Posts