File: minimal_chart_bg.xml

package info (click to toggle)
tryton-modules-account-asset 5.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 912 kB
  • sloc: python: 1,434; xml: 696; makefile: 6; sh: 3
file content (41 lines) | stat: -rw-r--r-- 1,337 bytes parent folder | download | duplicates (3)
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
<?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>
        <record id="account_template_assets_bg" model="account.account.template">
            
            <field name="name">Assets</field>
            
            
            
            
            
            
            
            <field name="type" ref="account.account_type_template_asset_long_term_bg"/>
            <field name="reconcile" eval="False"/>
            <field name="deferral" eval="True"/>
            <field name="parent" ref="account.account_template_root_bg"/>
            <field name="kind">expense</field>
        </record>

        <record id="account_template_depretiation_bg" model="account.account.template">
            
            <field name="name">Depreciation</field>
            
            
            
            
            
            
            
            <field name="type" ref="account.account_type_template_asset_long_term_bg"/>
            <field name="reconcile" eval="False"/>
            <field name="deferral" eval="True"/>
            <field name="parent" ref="account_template_assets_bg"/>
            <field name="kind">other</field>
        </record>

    </data>
</tryton>