货币转换在类别页面中

时间:2017-12-07 07:10:23

标签: opencart opencart2.x opencart-3

我希望在类别中显示多种治愈价格

我有一个代码tike这个

$this->currency->convert($price, 'RUB', 'CNY'),

将它放在护理控制器中以便工作?

1 个答案:

答案 0 :(得分:0)

我解决了这个问题

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

也许有人有更好的方法。