This repository was archived by the owner on Jan 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathminimal_chart_pt.xml
More file actions
71 lines (31 loc) · 2.09 KB
/
minimal_chart_pt.xml
File metadata and controls
71 lines (31 loc) · 2.09 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
<?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 language="pt">
<record id="account_type_template_asset_current_inventories_pt" model="account.account.type.template">
<field name="name">Inventários</field>
<field name="parent" ref="account.account_type_template_asset_current_pt"/>
<field name="statement">balance</field>
<field name="stock" eval="True"/>
<field name="sequence" eval="20"/>
</record>
<record id="account_template_stock_pt" model="account.account.template">
<field name="name">Estoque</field>
<field name="type" ref="account_type_template_asset_current_inventories_pt"/>
<field name="parent" ref="account.account_template_root_pt"/>
</record>
<record id="account_type_template_stock_expense_pt" model="account.account.type.template">
<field name="name">Despesa de estoque</field>
<field name="parent" ref="account.account_type_template_expense_pt"/>
<field name="statement">income</field>
<field name="sequence" eval="30"/>
<field name="stock" eval="True"/>
</record>
<record id="account_template_stock_expense_pt" model="account.account.template">
<field name="name">Despesa de estoque</field>
<field name="type" ref="account_type_template_stock_expense_pt"/>
<field name="parent" ref="account.account_template_root_pt"/>
</record>
</data>
</tryton>