mirror of
https://github.com/NaN-tic/trytond-product_sale_relation.git
synced 2023-12-13 21:00:15 +01:00
18 lines
754 B
XML
18 lines
754 B
XML
<?xml version="1.0"?>
|
|
<!-- The COPYRIGHT file at the top level of this repository contains the full
|
|
copyright notices and license terms. -->
|
|
<tryton>
|
|
<data>
|
|
|
|
<record model="ir.action.act_window" id="act_product_sale_line_relation">
|
|
<field name="name">Sale Lines</field>
|
|
<field name="res_model">sale.line</field>
|
|
<field name="domain">[("product", "=", Eval('active_id'))]</field>
|
|
</record>
|
|
<record model="ir.action.keyword" id="act_open_product_sale_line_relation">
|
|
<field name="keyword">form_relate</field>
|
|
<field name="model">product.product,-1</field>
|
|
<field name="action" ref="act_product_sale_line_relation"/>
|
|
</record>
|
|
</data>
|
|
</tryton>
|