Skip to content

Commit

Permalink
[ADD] l10n_be_annual_account_xbrl
Browse files Browse the repository at this point in the history
  • Loading branch information
mathisjacoby committed May 17, 2023
1 parent 3622a20 commit e5562a2
Show file tree
Hide file tree
Showing 23 changed files with 1,894 additions and 4 deletions.
1 change: 1 addition & 0 deletions l10n_be_annual_account_xbrl/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import models
28 changes: 28 additions & 0 deletions l10n_be_annual_account_xbrl/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# Copyright 2023 ACSONE SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "L10n Be Annual Account Xbrl",
"summary": """
generates the xbrl report of belgium annual account""",
"version": "14.0.1.0.0",
"development_status": "Alpha",
"license": "AGPL-3",
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-belgium",
"depends": [
"l10n_be_mis_reports",
"contacts",
"partner_firstname",
"partner_identification",
],
"data": [
"data/partner_id_numbers_data.xml",
"security/acl_l10n_be_annual_account_xbrl.xml",
"security/acl_rule_l10n_be_annual_account_xbrl.xml",
"views/l10n_be_annual_account_xbrl.xml",
"views/mis_report.xml",
"views/res_partner.xml",
],
"demo": [],
}
13 changes: 13 additions & 0 deletions l10n_be_annual_account_xbrl/data/partner_id_numbers_data.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<data noupdate="1">
<record id="id_category_entity_number" model="res.partner.id_category">
<field name="code">nmt:m1</field>
<field name="name">Entity Number</field>
</record>
<record id="id_category_member_number" model="res.partner.id_category">
<field name="code">member_number</field>
<field name="name">Member Number</field>
</record>
</data>
</odoo>
4 changes: 4 additions & 0 deletions l10n_be_annual_account_xbrl/models/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from . import l10n_be_annual_account_xbrl
from . import mis_report
from . import res_partner
from . import res_company
Loading

0 comments on commit e5562a2

Please sign in to comment.