mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
Workaround for bug #151 Add dedicated menu entry for currency.rate.update.service in Accounting > Config > Misc Fix English mistake Clean-up form view structure of currency.rate.update.service
14 lines
482 B
XML
14 lines
482 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<openerp>
|
|
<data noupdate="1">
|
|
|
|
<record id="currency_rate_update_service_multicompany_rule" model="ir.rule">
|
|
<field name="name">Current Rate Update Service multi-company</field>
|
|
<field name="model_id" ref="model_currency_rate_update_service"/>
|
|
<field name="global" eval="True"/>
|
|
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
|
</record>
|
|
|
|
</data>
|
|
</openerp>
|