18 lines
582 B
XML
18 lines
582 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
© 2015-2016 Akretion (http://www.akretion.com/)
|
|
@author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
-->
|
|
|
|
|
|
<odoo noupdate="1">
|
|
|
|
<record id="product_price_history_rule" model="ir.rule">
|
|
<field name="name">Product price history multi-company</field>
|
|
<field name="model_id" ref="product.model_product_price_history"/>
|
|
<field name="domain_force">['|', ('company_id', '=', False), ('company_id', 'child_of', [user.company_id.id])]</field>
|
|
</record>
|
|
|
|
</odoo>
|