The change is in trunk at revision 3632 (revision-id:
[email protected]).

Thanks for the heads-up. Please note you can do a merge proposal instead
of a bug report when you actually know what should be done.

Thanks.

** Changed in: openobject-server
       Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of OpenERP
CTP, which is subscribed to OpenERP Server.
https://bugs.launchpad.net/bugs/715646

Title:
  [TRUNK 6.0 5.0] Venezuelan currency exchange Incorrect preloaded.

Status in OpenERP Server:
  Fix Released

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 manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-server/+bug/715646/+subscriptions

_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to     : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help   : https://help.launchpad.net/ListHelp

Reply via email to