forked from OCA/sale-workflow
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsale_view.xml
More file actions
115 lines (115 loc) · 4.85 KB
/
sale_view.xml
File metadata and controls
115 lines (115 loc) · 4.85 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<?xml version="1.0" encoding="utf-8" ?>
<!-- License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
<odoo>
<record id="action_sale_test_tree" model="ir.actions.act_window">
<field name="name">Sale Exception Rules</field>
<field name="res_model">exception.rule</field>
<field name="view_mode">list,form</field>
<field name="view_id" ref="base_exception.view_exception_rule_list" />
<field
name="domain"
>[('model', 'in', ['sale.order', 'sale.order.line'])]</field>
<field
name="context"
>{'active_test': False, 'default_model' : 'sale.order'}</field>
</record>
<menuitem
action="action_sale_test_tree"
id="menu_sale_test"
sequence="90"
parent="sale.menu_sales_config"
groups="base_exception.group_exception_rule_manager"
/>
<record id="view_order_form" model="ir.ui.view">
<field name="name">sale_exception.view_order_form</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_form" />
<field name="arch" type="xml">
<sheet position="before">
<div
class="alert alert-danger"
role="alert"
style="margin-bottom:0px;"
invisible="not exceptions_summary"
>
<p>
<strong
>There are exceptions blocking the confirmation of this Sale Order:</strong>
</p>
<field name="exceptions_summary" />
<button
name="action_ignore_exceptions"
type="object"
class="btn-danger"
string="Ignore Exceptions"
help="Click here to be able to confirm this Sale Orders regardless of the exceptions."
groups="base_exception.group_exception_rule_manager"
/>
</div>
</sheet>
<xpath expr="//field[@name='date_order']/.." position="inside">
<field
name="ignore_exception"
invisible="state != 'sale'"
groups="base_exception.group_exception_rule_manager"
/>
</xpath>
<xpath expr="//field[@name='order_line']/form/group[1]" position="before">
<div
class="alert alert-danger"
role="alert"
style="margin-bottom:0px;"
invisible="not exceptions_summary"
>
<p>
<strong
>There are exceptions on this line blocking the confirmation of this quotation:</strong>
</p>
<field name="exceptions_summary" />
</div>
</xpath>
<xpath expr="//field[@name='order_line']/list" position="inside">
<field name="is_exception_danger" column_invisible="1" />
</xpath>
<xpath expr="//field[@name='order_line']/list" position="attributes">
<attribute name="decoration-danger">is_exception_danger</attribute>
</xpath>
</field>
</record>
<record id="view_order_tree" model="ir.ui.view">
<field name="name">sale_exception.view_order_tree</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_order_tree" />
<field name="arch" type="xml">
<field name="state" position="after">
<field name="main_exception_id" />
</field>
</field>
</record>
<record id="view_quotation_tree" model="ir.ui.view">
<field name="name">sale_exception.view_order_tree</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_quotation_tree" />
<field name="arch" type="xml">
<field name="state" position="after">
<field name="main_exception_id" />
</field>
</field>
</record>
<record id="view_sales_order_filter" model="ir.ui.view">
<field name="name">sale_exception.view_sales_order_filter</field>
<field name="model">sale.order</field>
<field name="inherit_id" ref="sale.view_sales_order_filter" />
<field name="arch" type="xml">
<filter name="my_sale_orders_filter" position="after">
<separator orientation="vertical" />
<filter
icon="terp-emblem-important"
name="tofix"
string="Blocked in draft"
domain="[('main_exception_id','!=',False)]"
/>
</filter>
</field>
</record>
</odoo>