This repository has been archived by the owner on Dec 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sale.xml
59 lines (53 loc) · 2.72 KB
/
sale.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0"?>
<!-- This file is part of Tryton. The COPYRIGHT file at the top level of
this repository contains the full copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.ui.view" id="configuration_view_form">
<field name="model">sale.configuration</field>
<field name="inherit" ref="sale.sale_configuration_view_form"/>
<field name="name">configuration_form</field>
</record>
<record model="ir.ui.view" id="product_association_rule_view_list">
<field name="model">sale.product.association.rule</field>
<field name="type">tree</field>
<field name="name">product_association_rule_list</field>
</record>
<record model="ir.ui.view" id="product_association_rule_view_form">
<field name="model">sale.product.association.rule</field>
<field name="type">form</field>
<field name="name">product_association_rule_form</field>
</record>
<record model="ir.action.act_window" id="act_product_association_rule_form">
<field name="name">Sale Association Rules</field>
<field name="res_model">sale.product.association.rule</field>
</record>
<record model="ir.action.act_window.view" id="act_product_association_rule_form_view1">
<field name="sequence" eval="10"/>
<field name="view" ref="product_association_rule_view_list"/>
<field name="act_window" ref="act_product_association_rule_form"/>
</record>
<record model="ir.action.act_window.view" id="act_product_association_rule_form_view2">
<field name="sequence" eval="20"/>
<field name="view" ref="product_association_rule_view_form"/>
<field name="act_window" ref="act_product_association_rule_form"/>
</record>
<menuitem
parent="sale.menu_product"
action="act_product_association_rule_form"
sequence="50"
id="menu_product_association_rule_form"/>
<record model="ir.model.access" id="access_product_association_rule">
<field name="model" search="[('model', '=', 'sale.product.association.rule')]"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="False"/>
<field name="perm_create" eval="False"/>
<field name="perm_delete" eval="False"/>
</record>
<record model="ir.cron" id="cron_product_association_rule_compute">
<field name="method">sale.product.association.rule|compute</field>
<field name="interval_number" eval="1"/>
<field name="interval_type">weeks</field>
</record>
</data>
</tryton>