2017-12-07 18 views
0

에 변환?

+0

OC 버전은 무엇입니까? 각 제품에 대해 서로 다른 통화로 가격을 표시 하시겠습니까? – DigitCart

+0

Opencart 2.3.0.2 –

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

처럼 내 문제를 해결.