Version Notes
Magento >= 1.5.x
Download this release
Release Info
Developer | p squared |
Extension | Psquared_PriceRounding |
Version | 1.0.0 |
Comparing to | |
See all releases |
Version 1.0.0
- app/etc/modules/Psquared_PriceRounding.xml +10 -0
- package.xml +29 -0
app/etc/modules/Psquared_PriceRounding.xml
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<config>
|
3 |
+
<modules>
|
4 |
+
<Psquared_PriceRounding>
|
5 |
+
<active>true</active>
|
6 |
+
<codePool>community</codePool>
|
7 |
+
<version>1.0.0</version>
|
8 |
+
</Psquared_PriceRounding>
|
9 |
+
</modules>
|
10 |
+
</config>
|
package.xml
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0"?>
|
2 |
+
<package>
|
3 |
+
<name>Psquared_PriceRounding</name>
|
4 |
+
<version>1.0.0</version>
|
5 |
+
<stability>stable</stability>
|
6 |
+
<license uri="http://opensource.org/licenses/gpl-license.php">GPL</license>
|
7 |
+
<channel>community</channel>
|
8 |
+
<extends/>
|
9 |
+
<summary>Price rounding for a product catalog in Magento.</summary>
|
10 |
+
<description>This tiny extension allows to round the prices in the product catalog to force integer values instead of ugly decimal values. This is helpful in combination with currency convertion.
|
11 |
+

|
12 |
+
Example: 100 € => USD 131.26
|
13 |
+
With enabled price rounding the price will be USD 131.00
|
14 |
+

|
15 |
+
Features:
|
16 |
+

|
17 |
+
- Enable or disable the price rounding per store view.
|
18 |
+
- Choose the rounding method per store view: round, ceil, floor (see math functions in PHP manual for more informations.)
|
19 |
+

|
20 |
+
GitHub Repository:
|
21 |
+
https://github.com/patrickbaber/Psquared_PriceRounding</description>
|
22 |
+
<notes>Magento >= 1.5.x</notes>
|
23 |
+
<authors><author><name>p squared</name><user>p_squared</user><email>realityfforce@yahoo.de</email></author></authors>
|
24 |
+
<date>2013-04-11</date>
|
25 |
+
<time>17:44:52</time>
|
26 |
+
<contents><target name="magecommunity"><dir name="."><file name="Psquared" hash="d41d8cd98f00b204e9800998ecf8427e"/></dir></target><target name="mageetc"><dir name="modules"><file name="Psquared_PriceRounding.xml" hash="853e6e0d3ebab74601e80cb0870da419"/></dir></target></contents>
|
27 |
+
<compatible/>
|
28 |
+
<dependencies><required><php><min>5.1.0</min><max>6.0.0</max></php></required></dependencies>
|
29 |
+
</package>
|