Page 1 of 1

OC3 Admin price

Posted: Sun Apr 22, 2018 6:03 pm
by Axel Wers
Why OC3 shows only two decimals in admin price? I need to see four, like in older versions. What have to I change for this? Thanks.

Re: OC3 Admin price

Posted: Mon Apr 23, 2018 7:11 pm
by Axel Wers
Nobody knows? I need this soon. It's weird, in database is everywhere `price` decimal(15,4) NOT NULL DEFAULT '0.0000', so why in product list I see only 0.00?

Re: OC3 Admin price

Posted: Thu Apr 26, 2018 2:21 pm
by ostechnologies
Yes, You can achieve this by modifying controller under admin > catalog > product in getList function replace $this->currency->format($result['price'], $this->config->get('config_currency')) with $result['price'] and you will get desire result.