-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path__manifest__.py
41 lines (36 loc) · 1.41 KB
/
__manifest__.py
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
# Part of Odoo. See LICENSE file for full copyright and licensing details.
# Copyright (C) RockIT Oy 2014-
# Copyright (C) Avoin.Systems 2014-
# Authors:
# Miku Laitinen (Avoin.Systems)
# Mikko Närjänen (Avoin.Systems)
# Toni Pesola (Avoin.Systems)
# Mikko Salmela (RockIT Oy)
# noinspection PyStatementEffect
{
"name": "Finland - Accounting (Raportointikoodisto)",
"category": "Localization",
"version": "12.0.1.0.0",
"description": """
Finnish chart of accounts, value added taxes and useful new fields.
Standard Business Reporting (=SBR or Raportointikoodisto) is a standard code set
making Finnish official reporting easier by supplementing the common chart of accounts.
Raportointikoodisto details: http://www.raportointikoodisto.fi/
Finnish regulations for accounting: http://www.finlex.fi/fi/laki/ajantasa/1997/19971339
""",
"author": "RockIt Oy & Avoin.Systems",
"depends": [
"account",
"l10n_multilang",
],
"data": [
"data/l10n_fi_chart_data.xml", # 1st
"data/account_account_template_data.xml",
"data/account_account_tag_data.xml",
"data/account_tax_template_data.xml",
"data/account_fiscal_position_template_data.xml",
"data/account_chart_template_data.xml", # 2nd last
"data/account_chart_template_configure_data.xml", # Load / evaluate this last
],
"installable": True,
}