Hello Naresh. In V6 it is not corrected yet, and when you install Bs, we are having rouniding issues.
http://bazaar.launchpad.net/~openerp/openobject- server/6.0/view/head:/bin/addons/base/base_data.xml In Trunk: http://bazaar.launchpad.net/~openerp/openobject- server/trunk/view/head:/openerp/addons/base/base_data.xml The same issue, not changed yet. Thanks 2011/6/1 Naresh(OpenERP) <[email protected]> > Hello Nhomar Hernández, > > Can we have your feedback on this issue.... > > > Thanks, > > -- > You received this bug notification because you are a direct subscriber > of the bug. > https://bugs.launchpad.net/bugs/715646 > > Title: > [TRUNK 6.0 5.0] Venezuelan currency exchange Incorrect preloaded. > > Status in OpenERP Server: > Confirmed > > Bug description: > Hello. > > Please on base data currency, the exchange for venezuela currency is > incorrect we change manually in all our instalations, BTW some users expect > this work out of the box (we have 4 years with the same amount) can pleas > make change on base data. > in file server/bin/addons/base/base_data.xml Look for: > > <record id="VEB" model="res.currency"> > <field name="name">Bs</field> > <field name="code">VEB</field> > <field name="rounding">2.95</field> > <field name="accuracy">4</field> > </record> > <record id="rateVEB" model="res.currency.rate"> > <field name="rate">3132.9</field> > <field name="currency_id" ref="VEB"/> > <field eval="time.strftime('%Y-01-01')" name="name"/> > </record> > > the correct is: > > <record id="VEB" model="res.currency"> > <field name="name">Bs</field> > <field name="code">VEB</field> > <field name="rounding">0.0001</field> > <field name="accuracy">4</field> > </record> > <record id="rateVEB" model="res.currency.rate"> > <field name="rate">5.864</field> > <field name="currency_id" ref="VEB"/> > <field eval="time.strftime('%Y-01-01')" name="name"/> > </record> > > Thanks. > > To unsubscribe from this bug, go to: > https://bugs.launchpad.net/openobject-server/+bug/715646/+subscribe > -- Saludos Cordiales Nhomar G. Hernandez M. +58-414-4110269 Skype: nhomar00 Web-Blog: http://geronimo.com.ve Servicios IT: http://openerp.com.ve Linux-Counter: 467724 Correos: [email protected] <[email protected]> [email protected] ** Changed in: openobject-server Importance: Low => Medium -- 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/715646 Title: [TRUNK 6.0 5.0] Venezuelan currency exchange Incorrect preloaded. Status in OpenERP Server: Confirmed Bug description: Hello. Please on base data currency, the exchange for venezuela currency is incorrect we change manually in all our instalations, BTW some users expect this work out of the box (we have 4 years with the same amount) can pleas make change on base data. in file server/bin/addons/base/base_data.xml Look for: <record id="VEB" model="res.currency"> <field name="name">Bs</field> <field name="code">VEB</field> <field name="rounding">2.95</field> <field name="accuracy">4</field> </record> <record id="rateVEB" model="res.currency.rate"> <field name="rate">3132.9</field> <field name="currency_id" ref="VEB"/> <field eval="time.strftime('%Y-01-01')" name="name"/> </record> the correct is: <record id="VEB" model="res.currency"> <field name="name">Bs</field> <field name="code">VEB</field> <field name="rounding">0.0001</field> <field name="accuracy">4</field> </record> <record id="rateVEB" model="res.currency.rate"> <field name="rate">5.864</field> <field name="currency_id" ref="VEB"/> <field eval="time.strftime('%Y-01-01')" name="name"/> </record> Thanks. _______________________________________________ Mailing list: https://launchpad.net/~c2c-oerpscenario Post to : [email protected] Unsubscribe : https://launchpad.net/~c2c-oerpscenario More help : https://help.launchpad.net/ListHelp

