-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory.xml
51 lines (49 loc) · 2.49 KB
/
inventory.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
<?xml version="1.0"?>
<!-- This file is part of stock_inventory_jreport module for Tryton.
The COPYRIGHT file at the top level of this repository contains the full
copyright notices and license terms. -->
<tryton>
<data>
<record model="ir.action.report"
id="stock_inventory_valued_report_action">
<field name="name">Stock Inventory Valued</field>
<field name="model">product.product</field>
<field name="report_name">stock.inventory.valued.jreport</field>
<field name="report">stock_inventory_jreport/inventory_valued.jrxml</field>
<field name="extension">pdf</field>
<field name="template_extension">jrxml</field>
</record>
<record model="ir.action.keyword"
id="stock_inventory_valued_report_keyword">
<field name="keyword">form_print</field>
<field name="model">product.product,-1</field>
<field name="action" ref="stock_inventory_valued_report_action"/>
</record>
<record model="ir.action.report" id="stock_inventory_report_action">
<field name="name">Stock Inventory</field>
<field name="model">stock.inventory</field>
<field name="report_name">stock.inventory.jreport</field>
<field name="report">stock_inventory_jreport/inventory.jrxml</field>
<field name="extension">pdf</field>
<field name="template_extension">jrxml</field>
</record>
<record model="ir.action.keyword" id="stock_inventory_report_keyword">
<field name="keyword">form_print</field>
<field name="model">stock.inventory,-1</field>
<field name="action" ref="stock_inventory_report_action"/>
</record>
<record model="ir.action.report" id="stock_blind_count_report_action">
<field name="name">Blind Count</field>
<field name="model">stock.inventory</field>
<field name="report_name">stock.blind_count.jreport</field>
<field name="report">stock_inventory_jreport/blind_count.jrxml</field>
<field name="extension">pdf</field>
<field name="template_extension">jrxml</field>
</record>
<record model="ir.action.keyword" id="stock_blind_count_report_keyword">
<field name="keyword">form_print</field>
<field name="model">stock.inventory,-1</field>
<field name="action" ref="stock_blind_count_report_action"/>
</record>
</data>
</tryton>