This repository was archived by the owner on Jan 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminimal_chart_en.xml
57 lines (27 loc) · 1.7 KB
/
minimal_chart_en.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
<?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="en">
<record id="account_type_template_fixed_assets_en" model="account.account.type.template">
<field name="name">Fixed Assets</field>
<field name="parent" ref="account.account_type_template_asset_long_term_en"/>
<field name="statement">balance</field>
<field name="assets" eval="True"/>
<field name="fixed_asset" eval="True"/>
<field name="sequence" eval="10"/>
</record>
<record id="account_template_assets_en" model="account.account.template">
<field name="name">Assets</field>
<field name="type" ref="account_type_template_fixed_assets_en"/>
<field name="reconcile" eval="False"/>
<field name="parent" ref="account.account_template_root_en"/>
</record>
<record id="account_template_depretiation_en" model="account.account.template">
<field name="name">Depreciation</field>
<field name="type" ref="account_type_template_fixed_assets_en"/>
<field name="reconcile" eval="False"/>
<field name="parent" ref="account.account_template_root_en"/>
</record>
</data>
</tryton>