File: minimal_chart_es.xml

package info (click to toggle)
tryton-modules-account-asset 5.0.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 920 kB
  • sloc: python: 1,439; xml: 696; makefile: 6; sh: 3
file content (41 lines) | stat: -rw-r--r-- 1,339 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_es" model="account.account.template">
            
            
            
            
            <field name="name">Activos</field>
            
            
            
            
            <field name="type" ref="account.account_type_template_asset_long_term_es"/>
            <field name="reconcile" eval="False"/>
            <field name="deferral" eval="True"/>
            <field name="parent" ref="account.account_template_root_es"/>
            <field name="kind">expense</field>
        </record>

        <record id="account_template_depretiation_es" model="account.account.template">
            
            
            
            
            <field name="name">AmortizaciĆ³n</field>
            
            
            
            
            <field name="type" ref="account.account_type_template_asset_long_term_es"/>
            <field name="reconcile" eval="False"/>
            <field name="deferral" eval="True"/>
            <field name="parent" ref="account_template_assets_es"/>
            <field name="kind">other</field>
        </record>

    </data>
</tryton>