Skip to content

Commit 2a539b8

Browse files
committed
[ADD] datev_export_dtvf
1 parent 832e185 commit 2a539b8

File tree

25 files changed

+1783
-0
lines changed

25 files changed

+1783
-0
lines changed

datev_export_dtvf/README.rst

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,97 @@
1+
=====
2+
DATEV
3+
=====
4+
5+
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6+
!! This file is generated by oca-gen-addon-readme !!
7+
!! changes will be overwritten. !!
8+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
9+
10+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
11+
:target: https://odoo-community.org/page/development-status
12+
:alt: Beta
13+
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
14+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
15+
:alt: License: AGPL-3
16+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--germany-lightgray.png?logo=github
17+
:target: https://github.com/OCA/l10n-germany/tree/14.0/datev_export_dtvf
18+
:alt: OCA/l10n-germany
19+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
20+
:target: https://translation.odoo-community.org/projects/l10n-germany-14-0/l10n-germany-14-0-datev_export_dtvf
21+
:alt: Translate me on Weblate
22+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
23+
:target: https://runboat.odoo-community.org/webui/builds.html?repo=OCA/l10n-germany&target_branch=14.0
24+
:alt: Try me on Runboat
25+
26+
|badge1| |badge2| |badge3| |badge4| |badge5|
27+
28+
This module implements DATEV exports in the dtvf format.
29+
30+
**Table of contents**
31+
32+
.. contents::
33+
:local:
34+
35+
Configuration
36+
=============
37+
38+
To configure this module, you need to:
39+
40+
#. Go to your company
41+
#. Fill in the fields in the `DATEV` tab
42+
#. For accounts where you want to suppress automatic calculations (for ie taxes), set the according flag
43+
44+
Usage
45+
=====
46+
47+
To use this module, you need to:
48+
49+
#. Go to `Invoicing` / `Reporting` / `DATEV export`
50+
#. Create an export, choose a date range to use as fiscal year, and ranges to export
51+
#. Click ``Generate``
52+
53+
Known issues / Roadmap
54+
======================
55+
56+
* support missing formats
57+
* add empty fields
58+
59+
Bug Tracker
60+
===========
61+
62+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-germany/issues>`_.
63+
In case of trouble, please check there if your issue has already been reported.
64+
If you spotted it first, help us smashing it by providing a detailed and welcomed
65+
`feedback <https://github.com/OCA/l10n-germany/issues/new?body=module:%20datev_export_dtvf%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
66+
67+
Do not contact contributors directly about support or help with technical issues.
68+
69+
Credits
70+
=======
71+
72+
Authors
73+
~~~~~~~
74+
75+
* Hunki Enterprises BV
76+
77+
Contributors
78+
~~~~~~~~~~~~
79+
80+
* Holger Brunn <mail@hunki-enterprises.com> (https://hunki-enterprises.com)
81+
82+
Maintainers
83+
~~~~~~~~~~~
84+
85+
This module is maintained by the OCA.
86+
87+
.. image:: https://odoo-community.org/logo.png
88+
:alt: Odoo Community Association
89+
:target: https://odoo-community.org
90+
91+
OCA, or the Odoo Community Association, is a nonprofit organization whose
92+
mission is to support the collaborative development of Odoo features and
93+
promote its widespread use.
94+
95+
This module is part of the `OCA/l10n-germany <https://github.com/OCA/l10n-germany/tree/14.0/datev_export_dtvf>`_ project on GitHub.
96+
97+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

datev_export_dtvf/__init__.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
2+
3+
from . import models
4+
from . import datev

datev_export_dtvf/__manifest__.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright 2022 Hunki Enterprises BV
2+
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
3+
{
4+
"name": "DATEV",
5+
"summary": "Export Data for DATEV (dtvf)",
6+
"version": "14.0.1.0.0",
7+
"development_status": "Beta",
8+
"category": "Accounting",
9+
"website": "https://github.com/OCA/l10n-germany",
10+
"author": "Hunki Enterprises BV, Odoo Community Association (OCA)",
11+
"license": "AGPL-3",
12+
"depends": [
13+
"account",
14+
"date_range",
15+
],
16+
"data": [
17+
"security/ir.model.access.csv",
18+
"views/account_account.xml",
19+
"views/datev_export_dtvf.xml",
20+
"views/res_company.xml",
21+
],
22+
}

0 commit comments

Comments
 (0)