c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #09988
[Bug 695264] Re: [trunk] IDR Currency need to be changed @ base_data.xml
Please ignore this as its been fixed. See below:
fixed in r6162
thanks for the report.
** Changed in: openobject-addons
Status: Confirmed => Fix Released
--
You received this bug notification because you are a direct subscriber
of the bug.
https://bugs.launchpad.net/bugs/690032
Title:
Double currency selection of Rs during setup
Status in OpenObject Addons Modules:
Fix Released
Bug description:
There are 2 currency symbol of "Rs" selection during database setup. One of them should be changed to be "Rp" of Indonesian Rupiah (IDR)
--
You received this bug notification because you are a member of C2C
OERPScenario, which is subscribed to the OpenERP Project Group.
https://bugs.launchpad.net/bugs/695264
Title:
[trunk] IDR Currency need to be changed @ base_data.xml
Status in OpenObject Server:
Fix Released
Bug description:
The name and symbol of currency IDR need to be changed from "Rs" to be "Rp" at server/addons/base/base_data.xml.
Currently:
<record id="IDR" model="res.currency">
<field name="name">Rs</field>
<field name="code">IDR</field>
<field name="symbol">Rs</field>
<field name="rounding">0.01</field>
<field name="accuracy">4</field>
<field name="company_id" ref="main_company"/>
</record>
Should be:
<record id="IDR" model="res.currency">
<field name="name">Rp</field>
<field name="code">IDR</field>
<field name="symbol">Rp</field>
<field name="rounding">0.01</field>
<field name="accuracy">4</field>
<field name="company_id" ref="main_company"/>
</record>
References