0

I want show in category multiple curency price

i have a code tike this

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

Where to put this in caregory controller for working?

Vasyl Vandych
  • 91
  • 1
  • 4
  • 14

1 Answers1

0

I resolve my problem like this

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;   
            }

Maybe someone have better way to make.

Vasyl Vandych
  • 91
  • 1
  • 4
  • 14