Skip to content

Commit

Permalink
Merge PR #416 into 17.0
Browse files Browse the repository at this point in the history
Signed-off-by thomaspaulb
  • Loading branch information
OCA-git-bot committed Apr 4, 2024
2 parents d91f097 + b82736f commit 3909685
Show file tree
Hide file tree
Showing 24 changed files with 3,607 additions and 0 deletions.
126 changes: 126 additions & 0 deletions l10n_nl_xaf_auditfile_export/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,126 @@
====================
XAF auditfile export
====================

..
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:7f8ac462c9165bf91eb8c1093678f12bee9c995c70b5e330e35e83b05c8e19a8
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
:target: https://odoo-community.org/page/development-status
:alt: Beta
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--netherlands-lightgray.png?logo=github
:target: https://github.com/OCA/l10n-netherlands/tree/17.0/l10n_nl_xaf_auditfile_export
:alt: OCA/l10n-netherlands
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/l10n-netherlands-17-0/l10n-netherlands-17-0-l10n_nl_xaf_auditfile_export
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
:target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-netherlands&target_branch=17.0
:alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

This module allows you to export XAF audit files for the Dutch tax
authorities (Belastingdienst).

The currently exported version is 3.2

An option allows to export the XAF audit files in a format that is
accepted by Unit4.

**Table of contents**

.. contents::
:local:

Configuration
=============

The exporting feature is available to the users who have Billing
Administrator or Accountant rights for accounting.

To configure the default start and end dates of the actual fiscal year,
go to accounting/settings and change the Last Day of the year you want
to export. Then in the form of the audit file export, by default the
end-date will be set accordingly and the start date will be 12 months
before the end date. Be aware that in case the OCA module
account_fiscal_year is installed, then the calculus of the fiscal year
dates is overridden, taking by default the date range defined for the
actual fiscal year (check Settings/Date Ranges).

Usage
=====

To use this module, you need to:

- be sure that you have Billing Administrator or Accountant rights for
accounting
- go to Invoicing/Reporting/Auditfile export
- create a new record, adjust values if the defaults are not
appropriate
- click Generate auditfile
- click Download on the field Auditfile

Known issues / Roadmap
======================

- encrypted files would be nice

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-netherlands/issues>`_.
In case of trouble, please check there if your issue has already been reported.
If you spotted it first, help us to smash it by providing a detailed and welcomed
`feedback <https://github.com/OCA/l10n-netherlands/issues/new?body=module:%20l10n_nl_xaf_auditfile_export%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

Do not contact contributors directly about support or help with technical issues.

Credits
=======

Authors
-------

* Therp BV

Contributors
------------

- Holger Brunn <[email protected]>
- Andrea Stirpe <[email protected]>
- Stefan Rijnhart <[email protected]>
- Tom Blauwendraat <[email protected]>

Other credits
-------------

Icon
~~~~

https://openclipart.org/detail/180891

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
:alt: Odoo Community Association
:target: https://odoo-community.org

OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and
promote its widespread use.

This module is part of the `OCA/l10n-netherlands <https://github.com/OCA/l10n-netherlands/tree/17.0/l10n_nl_xaf_auditfile_export>`_ project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
3 changes: 3 additions & 0 deletions l10n_nl_xaf_auditfile_export/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

from . import models
20 changes: 20 additions & 0 deletions l10n_nl_xaf_auditfile_export/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2015-2022 Therp BV <https://therp.nl>
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "XAF auditfile export",
"version": "17.0.1.0.0",
"author": "Therp BV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-netherlands",
"license": "AGPL-3",
"category": "Localization/Netherlands",
"summary": "Export XAF auditfiles for Dutch tax authorities",
"depends": ["account", "l10n_nl"],
"data": [
"security/ir.model.access.csv",
"views/xaf_auditfile_export.xml",
"views/templates.xml",
"views/menu.xml",
],
"installable": True,
}
Loading

0 comments on commit 3909685

Please sign in to comment.