我希望在类别中显示多种治愈价格
我有一个代码tike这个
$this->currency->convert($price, 'RUB', 'CNY'),
将它放在护理控制器中以便工作?
答案 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;
}
也许有人有更好的方法。