forked from tryton/stock
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfiguration.xml
80 lines (71 loc) · 3.9 KB
/
configuration.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?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="stock_configuration_view_form">
<field name="model">stock.configuration</field>
<field name="type">form</field>
<field name="name">configuration_form</field>
</record>
<record model="ir.action.act_window" id="act_stock_configuration_form">
<field name="name">Stock Configuration</field>
<field name="res_model">stock.configuration</field>
</record>
<record model="ir.action.act_window.view"
id="act_stock_configuration_view1">
<field name="sequence" eval="1"/>
<field name="view" ref="stock_configuration_view_form"/>
<field name="act_window" ref="act_stock_configuration_form"/>
</record>
<menuitem parent="menu_configuration"
action="act_stock_configuration_form"
id="menu_stock_configuration" icon="tryton-list"/>
<record model="ir.property" id="property_shipment_in_sequence">
<field name="field"
search="[('model.model', '=', 'stock.configuration'), ('name', '=', 'shipment_in_sequence')]"/>
<field name="value" eval="'ir.sequence,' + str(ref('sequence_shipment_in'))"/>
</record>
<record model="ir.property" id="property_shipment_in_return_sequence">
<field name="field"
search="[('model.model', '=', 'stock.configuration'), ('name', '=', 'shipment_in_return_sequence')]"/>
<field name="value" eval="'ir.sequence,' + str(ref('sequence_shipment_in_return'))"/>
</record>
<record model="ir.property" id="property_shipment_out_sequence">
<field name="field"
search="[('model.model', '=', 'stock.configuration'), ('name', '=', 'shipment_out_sequence')]"/>
<field name="value" eval="'ir.sequence,' + str(ref('sequence_shipment_out'))"/>
</record>
<record model="ir.property" id="property_shipment_out_return_sequence">
<field name="field"
search="[('model.model', '=', 'stock.configuration'), ('name', '=', 'shipment_out_return_sequence')]"/>
<field name="value" eval="'ir.sequence,' + str(ref('sequence_shipment_out_return'))"/>
</record>
<record model="ir.property" id="property_shipment_internal_sequence">
<field name="field"
search="[('model.model', '=', 'stock.configuration'), ('name', '=', 'shipment_internal_sequence')]"/>
<field name="value" eval="'ir.sequence,' + str(ref('sequence_shipment_internal'))"/>
</record>
<record model="ir.property" id="property_inventory_sequence">
<field name="field"
search="[('model.model', '=', 'stock.configuration'), ('name', '=', 'inventory_sequence')]"/>
<field name="value"
eval="'ir.sequence,' + str(ref('sequence_inventory'))"/>
</record>
<record model="ir.model.access" id="access_configuration">
<field name="model" search="[('model', '=', 'stock.configuration')]"/>
<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.model.access" id="access_configuration_admin">
<field name="model" search="[('model', '=', 'stock.configuration')]"/>
<field name="group" ref="group_stock_admin"/>
<field name="perm_read" eval="True"/>
<field name="perm_write" eval="True"/>
<field name="perm_create" eval="True"/>
<field name="perm_delete" eval="True"/>
</record>
</data>
</tryton>