Skip to content

Commit

Permalink
Merge c717a9d into 89a9652
Browse files Browse the repository at this point in the history
  • Loading branch information
Richard Dijkstra committed Sep 10, 2015
2 parents 89a9652 + c717a9d commit add3c21
Show file tree
Hide file tree
Showing 12 changed files with 1,648 additions and 0 deletions.
86 changes: 86 additions & 0 deletions l10n_nl_tax_declaration_reporting/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
:alt: License: AGPL-3

=========================
NL Tax Declaration Report
=========================

This module provides you with the Tax Statement in the Dutch format.
In the report you will find the taxes charged to customers and taxes that
suppliers charge to you. The layout this module provides will seem very
familiar to everyone wanting to declare taxes in The Netherlands.

The standard Tax Declaration report is not replaced by this module, a new
report with the Dutch layout is added to the menu
Reporting > Generic Reporting > Taxes.

Deze module biedt u de BTW aangifte in Nederlands formaat.
In het rapport staat de BTW berekend aan klanten, en de btw die
leveranciers aan u berekenen. Het rapport is met deze indeling zeer
herkenbaar voor iedereen die een belasting aangifte wilt doen.

Dit rapport verwijdert niet de standaard, maar wordt toegevoegd in
het menu Rapportages > Algemene rapporten > Belastingen.

Installation
============

This module can be installed using the standard installation procedure.

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

This module depends on the tax codes (e.g. 1a, 1b, 1c, 1d, 2a...) as prescribed
by the Dutch tax laws.
When using the default Dutch chart of account, the module l10n_nl will be
installed, which will add these codes automatically.

Usage
=====

The standard Tax Declaration report is not replaced by this module, a new
report with the Dutch layout is added to the menu
Reporting > Generic Reporting > Taxes.

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/176/8.0

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

* Replace old with new API wizzard.

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 smashing it by providing a detailed and welcomed feedback
`here <https://github.com/OCA/l10n-netherlands/issues>`_.


Credits
=======

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

* Diego Luis Neto <d.l.neto@onestein.nl>
* Kevin Graveman <k.graveman@onestein.nl>
* Richard Dijkstra <r.dijkstra@onestein.nl>

Maintainer
----------

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

This module is maintained by the OCA.

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.

To contribute to this module, please visit http://odoo-community.org.
23 changes: 23 additions & 0 deletions l10n_nl_tax_declaration_reporting/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Dutch accounting taxes addon
# Copyright (C) 2014 ONESTEiN BV (<http://www.onestein.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

from . import report
from . import wizard
45 changes: 45 additions & 0 deletions l10n_nl_tax_declaration_reporting/__openerp__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# -*- encoding: utf-8 -*-
##############################################################################
#
# Dutch accounting taxes addon
# Copyright (C) 2014 ONESTEiN BV (<http://www.onestein.nl>).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################

{
'name': 'VAT Report Netherlands',
'version': '1.0',
'category': 'Localization',
'sequence': 1,
'description': """
NL Tax Declaration Report
=========================
This module provides you with the Tax Statement in the Dutch format.
""",
'author': 'ONESTEiN BV, Odoo Community Association (OCA), Odoo SA',
'website': 'http://www.onestein.nl',
'depends': ['account',
'account_chart',
],
'data': [
"views/account_tax_report.xml",
"wizard/account_vat_view_nl.xml",
],
'demo': [],
'installable': True,
}
Loading

0 comments on commit add3c21

Please sign in to comment.