-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstock.xml
43 lines (39 loc) · 1.78 KB
/
stock.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
<?xml version="1.0" encoding="UTF-8"?>
<tryton>
<data>
<!-- stock.location -->
<record model="ir.ui.view" id="location_quantity_view_tree">
<field name="model">stock.location</field>
<field name="inherit" ref="stock.location_quantity_view_tree"/>
<field name="name">location_quantity_tree</field>
</record>
<record model="ir.ui.view" id="location_quantity_view_list">
<field name="model">stock.location</field>
<field name="inherit" ref="stock.location_quantity_view_list"/>
<field name="name">location_quantity_tree</field>
</record>
<record model="ir.ui.view" id="products_by_locations_view_list">
<field name="model">stock.products_by_locations</field>
<field name="inherit" ref="stock.products_by_locations_view_list"/>
<field name="name">products_by_locations_list</field>
</record>
</data>
<data depends="stock_lot">
<!-- stock.lot -->
<record model="ir.ui.view" id="lots_by_locations_view_list">
<field name="model">stock.lots_by_locations</field>
<field name="inherit" ref="stock_lot.lots_by_locations_view_list"/>
<field name="name">lots_by_locations_list</field>
</record>
<record model="ir.ui.view" id="lot_view_tree">
<field name="model">stock.lot</field>
<field name="inherit" ref="stock_lot.lot_view_tree"/>
<field name="name">lot_tree</field>
</record>
<record model="ir.ui.view" id="lot_view_form">
<field name="model">stock.lot</field>
<field name="inherit" ref="stock_lot.lot_view_form"/>
<field name="name">lot_form</field>
</record>
</data>
</tryton>