This repository has been 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
/
Copy pathminimal_chart_nl.xml
71 lines (31 loc) · 2.07 KB
/
minimal_chart_nl.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
<?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="nl">
<record id="account_type_template_asset_current_inventories_nl" model="account.account.type.template">
<field name="name">Inventories</field>
<field name="parent" ref="account.account_type_template_asset_current_nl"/>
<field name="statement">balance</field>
<field name="stock" eval="True"/>
<field name="sequence" eval="20"/>
</record>
<record id="account_template_stock_nl" model="account.account.template">
<field name="name">Voorraad</field>
<field name="type" ref="account_type_template_asset_current_inventories_nl"/>
<field name="parent" ref="account.account_template_root_nl"/>
</record>
<record id="account_type_template_stock_expense_nl" model="account.account.type.template">
<field name="name">Voorraad</field>
<field name="parent" ref="account.account_type_template_expense_nl"/>
<field name="statement">income</field>
<field name="sequence" eval="30"/>
<field name="stock" eval="True"/>
</record>
<record id="account_template_stock_expense_nl" model="account.account.template">
<field name="name">Voorraad</field>
<field name="type" ref="account_type_template_stock_expense_nl"/>
<field name="parent" ref="account.account_template_root_nl"/>
</record>
</data>
</tryton>