c2c-oerpscenario team mailing list archive
-
c2c-oerpscenario team
-
Mailing list archive
-
Message #09989
[Bug 695264] Re: [trunk] IDR Currency need to be changed @ base_data.xml
Thanks for reporting Iman.
It has been fixed by revision http://bazaar.launchpad.net/~openerp/openobject-server/trunk/revision/3162.
** Changed in: openobject-server
Status: New => Fix Released
** Changed in: openobject-server
Milestone: None => 6.0-rc2
** Changed in: openobject-server
Assignee: (unassigned) => OpenERP's Framework R&D (openerp-dev-framework)
--
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