├── .copier-answers.yml ├── .editorconfig ├── .github └── workflows │ ├── pre-commit.yml │ ├── stale.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .prettierignore ├── .pylintrc ├── .pylintrc-mandatory ├── .ruff.toml ├── LICENSE ├── README.md ├── checklog-odoo.cfg ├── eslint.config.cjs ├── l10n_nl_bank ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── res_bank_data.xml ├── i18n │ └── l10n_nl_bank.pot ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ └── DESCRIPTION.md └── static │ └── description │ ├── icon.png │ ├── icon.svg │ └── index.html ├── l10n_nl_bsn ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── l10n_nl_bsn.pot │ └── nl.po ├── models │ ├── __init__.py │ └── res_partner.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_l10n_nl_bsn.py └── views │ └── res_partner.xml ├── l10n_nl_kvk_partner ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── l10n_nl_kvk_partner.pot ├── models │ ├── __init__.py │ └── res_partner.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── img │ │ └── l10n_nl_kvk_partner.png ├── tests │ ├── __init__.py │ └── test_l10n_nl_kvk_partner.py └── views │ └── res_partner_views.xml ├── l10n_nl_postcode ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── l10n_nl_postcode.pot │ └── nl.po ├── models │ ├── __init__.py │ └── res_partner.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ └── USAGE.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html └── tests │ ├── __init__.py │ └── test_l10n_nl_postcode.py ├── l10n_nl_tax_statement ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── paperformat.xml ├── i18n │ ├── l10n_nl_tax_statement.pot │ └── nl.po ├── models │ ├── __init__.py │ ├── account_move.py │ ├── account_move_line.py │ ├── l10n_nl_vat_statement.py │ ├── l10n_nl_vat_statement_line.py │ ├── res_company.py │ └── res_config_settings.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── report │ ├── __init__.py │ ├── l10n_nl_tax_statement_xlsx.py │ └── report_tax_statement.xml ├── security │ ├── ir.model.access.csv │ └── tax_statement_security_rule.xml ├── static │ ├── description │ │ ├── icon.png │ │ └── index.html │ └── src │ │ └── css │ │ └── report.css ├── tests │ ├── __init__.py │ └── test_l10n_nl_vat_statement.py └── views │ ├── l10n_nl_vat_statement_view.xml │ ├── report_tax_statement.xml │ └── res_config_settings.xml ├── l10n_nl_tax_statement_date_range ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ └── l10n_nl_tax_statement_date_range.pot ├── models │ ├── __init__.py │ └── l10n_nl_vat_statement.py ├── pyproject.toml ├── readme │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── INSTALL.md │ └── USAGE.md ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_l10n_nl_vat_statement.py └── views │ └── l10n_nl_vat_statement_view.xml ├── l10n_nl_tax_statement_icp ├── README.rst ├── __init__.py ├── __manifest__.py ├── i18n │ ├── l10n_nl_tax_statement_icp.pot │ └── nl.po ├── models │ ├── __init__.py │ ├── l10n_nl_vat_statement.py │ └── l10n_nl_vat_statement_icp_line.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── report │ ├── __init__.py │ ├── l10n_nl_tax_statement_icp_xlsx.py │ └── report_tax_statement.xml ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_l10n_nl_tax_statement_icp.py └── views │ ├── l10n_nl_vat_statement_view.xml │ └── report_tax_statement.xml ├── l10n_nl_xaf_auditfile_export ├── README.rst ├── __init__.py ├── __manifest__.py ├── data │ └── XmlAuditfileFinancieel3.2.xsd ├── i18n │ ├── l10n_nl_xaf_auditfile_export.pot │ └── nl.po ├── models │ ├── __init__.py │ ├── ir_qweb.py │ └── xaf_auditfile_export.py ├── pyproject.toml ├── readme │ ├── CONFIGURE.md │ ├── CONTRIBUTORS.md │ ├── CREDITS.md │ ├── DESCRIPTION.md │ ├── ROADMAP.md │ └── USAGE.md ├── security │ └── ir.model.access.csv ├── static │ └── description │ │ ├── icon.png │ │ └── index.html ├── tests │ ├── __init__.py │ └── test_l10n_nl_xaf_auditfile_export.py └── views │ ├── menu.xml │ ├── templates.xml │ └── xaf_auditfile_export.xml ├── prettier.config.cjs └── setup └── _metapackage └── pyproject.toml /.copier-answers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.copier-answers.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/pre-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.github/workflows/pre-commit.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.prettierignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.pylintrc -------------------------------------------------------------------------------- /.pylintrc-mandatory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.pylintrc-mandatory -------------------------------------------------------------------------------- /.ruff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/.ruff.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/README.md -------------------------------------------------------------------------------- /checklog-odoo.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/checklog-odoo.cfg -------------------------------------------------------------------------------- /eslint.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/eslint.config.cjs -------------------------------------------------------------------------------- /l10n_nl_bank/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/README.rst -------------------------------------------------------------------------------- /l10n_nl_bank/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/__init__.py -------------------------------------------------------------------------------- /l10n_nl_bank/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_bank/data/res_bank_data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/data/res_bank_data.xml -------------------------------------------------------------------------------- /l10n_nl_bank/i18n/l10n_nl_bank.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/i18n/l10n_nl_bank.pot -------------------------------------------------------------------------------- /l10n_nl_bank/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_bank/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_bank/readme/CREDITS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/readme/CREDITS.md -------------------------------------------------------------------------------- /l10n_nl_bank/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_bank/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_bank/static/description/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/static/description/icon.svg -------------------------------------------------------------------------------- /l10n_nl_bank/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bank/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_bsn/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/README.rst -------------------------------------------------------------------------------- /l10n_nl_bsn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/__init__.py -------------------------------------------------------------------------------- /l10n_nl_bsn/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_bsn/i18n/l10n_nl_bsn.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/i18n/l10n_nl_bsn.pot -------------------------------------------------------------------------------- /l10n_nl_bsn/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/i18n/nl.po -------------------------------------------------------------------------------- /l10n_nl_bsn/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/models/__init__.py -------------------------------------------------------------------------------- /l10n_nl_bsn/models/res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/models/res_partner.py -------------------------------------------------------------------------------- /l10n_nl_bsn/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_bsn/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/readme/CONFIGURE.md -------------------------------------------------------------------------------- /l10n_nl_bsn/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_bsn/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_bsn/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/readme/ROADMAP.md -------------------------------------------------------------------------------- /l10n_nl_bsn/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_bsn/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_bsn/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_bsn/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/tests/__init__.py -------------------------------------------------------------------------------- /l10n_nl_bsn/tests/test_l10n_nl_bsn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/tests/test_l10n_nl_bsn.py -------------------------------------------------------------------------------- /l10n_nl_bsn/views/res_partner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_bsn/views/res_partner.xml -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/README.rst -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/i18n/l10n_nl_kvk_partner.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/i18n/l10n_nl_kvk_partner.pot -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import res_partner 2 | -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/models/res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/models/res_partner.py -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/static/img/l10n_nl_kvk_partner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/static/img/l10n_nl_kvk_partner.png -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_l10n_nl_kvk_partner 2 | -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/tests/test_l10n_nl_kvk_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/tests/test_l10n_nl_kvk_partner.py -------------------------------------------------------------------------------- /l10n_nl_kvk_partner/views/res_partner_views.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_kvk_partner/views/res_partner_views.xml -------------------------------------------------------------------------------- /l10n_nl_postcode/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/README.rst -------------------------------------------------------------------------------- /l10n_nl_postcode/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/__init__.py -------------------------------------------------------------------------------- /l10n_nl_postcode/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_postcode/i18n/l10n_nl_postcode.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/i18n/l10n_nl_postcode.pot -------------------------------------------------------------------------------- /l10n_nl_postcode/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/i18n/nl.po -------------------------------------------------------------------------------- /l10n_nl_postcode/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/models/__init__.py -------------------------------------------------------------------------------- /l10n_nl_postcode/models/res_partner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/models/res_partner.py -------------------------------------------------------------------------------- /l10n_nl_postcode/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_postcode/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_postcode/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_postcode/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_postcode/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_postcode/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_postcode/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/tests/__init__.py -------------------------------------------------------------------------------- /l10n_nl_postcode/tests/test_l10n_nl_postcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_postcode/tests/test_l10n_nl_postcode.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/README.rst -------------------------------------------------------------------------------- /l10n_nl_tax_statement/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/__init__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/data/paperformat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/data/paperformat.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement/i18n/l10n_nl_tax_statement.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/i18n/l10n_nl_tax_statement.pot -------------------------------------------------------------------------------- /l10n_nl_tax_statement/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/i18n/nl.po -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/__init__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/account_move.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/account_move.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/account_move_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/account_move_line.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/l10n_nl_vat_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/l10n_nl_vat_statement.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/l10n_nl_vat_statement_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/l10n_nl_vat_statement_line.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/res_company.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/res_company.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/models/res_config_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/models/res_config_settings.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_tax_statement/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/readme/CONFIGURE.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/readme/ROADMAP.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement/report/__init__.py: -------------------------------------------------------------------------------- 1 | from . import l10n_nl_tax_statement_xlsx 2 | -------------------------------------------------------------------------------- /l10n_nl_tax_statement/report/l10n_nl_tax_statement_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/report/l10n_nl_tax_statement_xlsx.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/report/report_tax_statement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/report/report_tax_statement.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/security/ir.model.access.csv -------------------------------------------------------------------------------- /l10n_nl_tax_statement/security/tax_statement_security_rule.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/security/tax_statement_security_rule.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_tax_statement/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_tax_statement/static/src/css/report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/static/src/css/report.css -------------------------------------------------------------------------------- /l10n_nl_tax_statement/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_l10n_nl_vat_statement 2 | -------------------------------------------------------------------------------- /l10n_nl_tax_statement/tests/test_l10n_nl_vat_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/tests/test_l10n_nl_vat_statement.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement/views/l10n_nl_vat_statement_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/views/l10n_nl_vat_statement_view.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement/views/report_tax_statement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/views/report_tax_statement.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement/views/res_config_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement/views/res_config_settings.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/README.rst -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/__init__.py: -------------------------------------------------------------------------------- 1 | from . import models 2 | -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/i18n/l10n_nl_tax_statement_date_range.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/i18n/l10n_nl_tax_statement_date_range.pot -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/models/__init__.py: -------------------------------------------------------------------------------- 1 | from . import l10n_nl_vat_statement 2 | -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/models/l10n_nl_vat_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/models/l10n_nl_vat_statement.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/readme/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/readme/INSTALL.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/tests/__init__.py: -------------------------------------------------------------------------------- 1 | from . import test_l10n_nl_vat_statement 2 | -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/tests/test_l10n_nl_vat_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/tests/test_l10n_nl_vat_statement.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_date_range/views/l10n_nl_vat_statement_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_date_range/views/l10n_nl_vat_statement_view.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/README.rst -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/__init__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/i18n/l10n_nl_tax_statement_icp.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/i18n/l10n_nl_tax_statement_icp.pot -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/i18n/nl.po -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/models/__init__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/models/l10n_nl_vat_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/models/l10n_nl_vat_statement.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/models/l10n_nl_vat_statement_icp_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/models/l10n_nl_vat_statement_icp_line.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/readme/CONFIGURE.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/readme/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/readme/ROADMAP.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/report/__init__.py: -------------------------------------------------------------------------------- 1 | from . import l10n_nl_tax_statement_icp_xlsx 2 | -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/report/l10n_nl_tax_statement_icp_xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/report/l10n_nl_tax_statement_icp_xlsx.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/report/report_tax_statement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/report/report_tax_statement.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/security/ir.model.access.csv -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/tests/__init__.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/tests/test_l10n_nl_tax_statement_icp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/tests/test_l10n_nl_tax_statement_icp.py -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/views/l10n_nl_vat_statement_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/views/l10n_nl_vat_statement_view.xml -------------------------------------------------------------------------------- /l10n_nl_tax_statement_icp/views/report_tax_statement.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_tax_statement_icp/views/report_tax_statement.xml -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/README.rst -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/__init__.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/__manifest__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/__manifest__.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/data/XmlAuditfileFinancieel3.2.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/data/XmlAuditfileFinancieel3.2.xsd -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/i18n/l10n_nl_xaf_auditfile_export.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/i18n/l10n_nl_xaf_auditfile_export.pot -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/i18n/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/i18n/nl.po -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/models/__init__.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/models/ir_qweb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/models/ir_qweb.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/models/xaf_auditfile_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/models/xaf_auditfile_export.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/pyproject.toml -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/readme/CONFIGURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/readme/CONFIGURE.md -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/readme/CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/readme/CONTRIBUTORS.md -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/readme/CREDITS.md: -------------------------------------------------------------------------------- 1 | ## Icon 2 | 3 | 4 | -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/readme/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/readme/DESCRIPTION.md -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/readme/ROADMAP.md: -------------------------------------------------------------------------------- 1 | - encrypted files would be nice 2 | -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/readme/USAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/readme/USAGE.md -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/security/ir.model.access.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/security/ir.model.access.csv -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/static/description/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/static/description/icon.png -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/static/description/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/static/description/index.html -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/tests/__init__.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/tests/test_l10n_nl_xaf_auditfile_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/tests/test_l10n_nl_xaf_auditfile_export.py -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/views/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/views/menu.xml -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/views/templates.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/views/templates.xml -------------------------------------------------------------------------------- /l10n_nl_xaf_auditfile_export/views/xaf_auditfile_export.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/l10n_nl_xaf_auditfile_export/views/xaf_auditfile_export.xml -------------------------------------------------------------------------------- /prettier.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/prettier.config.cjs -------------------------------------------------------------------------------- /setup/_metapackage/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OCA/l10n-netherlands/HEAD/setup/_metapackage/pyproject.toml --------------------------------------------------------------------------------