Skip to content

Commit

Permalink
Merge f40d91c into a3ca0dd
Browse files Browse the repository at this point in the history
  • Loading branch information
Byloth committed Dec 19, 2019
2 parents a3ca0dd + f40d91c commit 1615266
Show file tree
Hide file tree
Showing 90 changed files with 21,076 additions and 0 deletions.
89 changes: 89 additions & 0 deletions l10n_it_withholding_tax_payment/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
====================================
ITA - Ritenute d'acconto - Pagamenti
====================================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |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--italy-lightgray.png?logo=github
:target: https://github.com/OCA/l10n-italy/tree/12.0/l10n_it_withholding_tax_payment
:alt: OCA/l10n-italy
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/l10n-italy-12-0/l10n-italy-12-0-l10n_it_withholding_tax_payment
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/122/12.0
:alt: Try me on Runbot

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

**Italiano**

Gestisce le ritenute sulle fatture e sui pagamenti.

**English**

Manages the Italian withholding taxes on invoices and payments.

**Table of contents**

.. contents::
:local:

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

Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-italy/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 <https://github.com/OCA/l10n-italy/issues/new?body=module:%20l10n_it_withholding_tax_payment%0Aversion:%2012.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
~~~~~~~

* Openforce
* Odoo Italia Network

Contributors
~~~~~~~~~~~~

* Alessandro Camilli <alessandrocamilli@openforce.it>
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
* Matteo Bilotta <mbilotta@linkgroup.it>

Other credits
~~~~~~~~~~~~~

The development of this module has been financially supported by:

* `Odoo Italia Network <https://www.odoo-italia.net/>`_

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-italy <https://github.com/OCA/l10n-italy/tree/12.0/l10n_it_withholding_tax_payment>`_ 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_it_withholding_tax_payment/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from . import models, wizard
29 changes: 29 additions & 0 deletions l10n_it_withholding_tax_payment/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Copyright 2015 Alessandro Camilli (<http://www.openforce.it>)
# Copyright 2019 Matteo Bilotta
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

{
'name': "ITA - Ritenuta d'acconto - Pagamenti",
'summary': "Gestisce le ritenute sulle fatture e sui pagamenti",
'version': '12.0.1.0.0',
'development_status': "Beta",
'category': "Invoicing & Payments",
'website': 'https://github.com/OCA/l10n-italy',
'author': "Openforce, "
"Odoo Italia Network, "
"Odoo Community Association (OCA)",
'license': 'AGPL-3',
'application': False,
'installable': True,
'depends': [
'account',
'l10n_it_withholding_tax'
],
'data': [
'data/sequence.xml',
'security/ir.model.access.csv',
'security/security.xml',
'views/withholding_tax.xml',
'wizard/create_move_payment_view.xml',
]
}
12 changes: 12 additions & 0 deletions l10n_it_withholding_tax_payment/data/sequence.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo noupdate="1">

<record id="seq_wt_move_payment" model="ir.sequence">
<field name="name">Withholding tax payment move number</field>
<field name="code">withholding.tax.move.payment</field>
<field eval="4" name="padding"/>
<field name="prefix">WTMP/</field>
<field name="company_id" eval="False"/>
</record>

</odoo>
Loading

0 comments on commit 1615266

Please sign in to comment.