我想在类别中显示多币种价格
我有这样的代码
$this->currency->convert($price, 'RUB', 'CNY'),
在哪里把它放在护理控制器中工作?
我想在类别中显示多币种价格
我有这样的代码
$this->currency->convert($price, 'RUB', 'CNY'),
在哪里把它放在护理控制器中工作?
我这样解决我的问题
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;
}
也许有人有更好的制作方法。