Price format

How to configure and adapt Aimeos based shops as developer
Forum rules
Always add your Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
User avatar
Dinver
Posts: 27
Joined: 26 Oct 2020, 08:42

Price format

Post by Dinver » 04 Nov 2020, 11:14

Hello, how can prices format be set with 100,00 on 100?

User avatar
aimeos
Administrator
Posts: 7896
Joined: 01 Jan 1970, 00:00

Re: Price format

Post by aimeos » 07 Nov 2020, 07:55

The number format is created by a view helper which has a second parameter for the number of decimals:

Code: Select all

$this->number( 100, 2 )
You have find the implementation here:
https://github.com/aimeos/aimeos-core/b ... Locale.php
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos, Image give us a star

User avatar
Dinver
Posts: 27
Joined: 26 Oct 2020, 08:42

Re: Price format

Post by Dinver » 07 Nov 2020, 15:28

aimeos wrote: 07 Nov 2020, 07:55 The number format is created by a view helper which has a second parameter for the number of decimals:

Code: Select all

$this->number( 100, 2 )
You have find the implementation here:
https://github.com/aimeos/aimeos-core/b ... Locale.php
Thank you very much for your help! :)

Post Reply