Skip to content

Commit

Permalink
Merge PR #2990 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by eLBati
  • Loading branch information
OCA-git-bot committed Nov 11, 2022
2 parents 09c6326 + 9d65aed commit d7b5d06
Show file tree
Hide file tree
Showing 34 changed files with 4,232 additions and 0 deletions.
96 changes: 96 additions & 0 deletions l10n_it_account/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
======================
ITA - Contabilità base
======================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png
:target: https://odoo-community.org/page/development-status
:alt: Production/Stable
.. |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/16.0/l10n_it_account
: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-16-0/l10n-italy-16-0-l10n_it_account
: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/16.0
:alt: Try me on Runbot

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

**Italiano**

Modulo di supporto per la contabilità.

Usato da moduli come l10n_it_vat_registries e account_vat_period_end_statement

**English**

Accounting-related modules helpers.

Used by modules like l10n_it_vat_registries and account_vat_period_end_statement

**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_account%0Aversion:%2016.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
~~~~~~~

* Agile Business Group
* Abstract

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

* Davide Corio
* Lorenzo Battistini <lorenzo.battistini@agilebg.com>
* Alex Comba <alex.comba@agilebg.com>
* Sergio Zanchetta <https://github.com/primes2h>
* Gianmarco Conte - Dinamiche Aziendali Sr <gconte@dinamicheaziendali.it>
* Marco Colombo - Phi S.r.l. <marco.colombo@phi.technology>

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

The development of this module has been financially supported by:

* Odoo Italia Network

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/16.0/l10n_it_account>`_ project on GitHub.

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

from . import models
from . import tools
from odoo import api, SUPERUSER_ID


def _l10n_it_account_post_init(cr, registry):
env = api.Environment(cr, SUPERUSER_ID, {})
env["account.account"].set_account_types_negative_sign()
46 changes: 46 additions & 0 deletions l10n_it_account/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright 2015 Abstract srl (<http://www.abstract.it>)
# Copyright 2015-2017 Agile Business Group (<http://www.agilebg.com>)
# Copyright 2015 Link It Spa (<http://www.linkgroup.it/>)
# Copyright 2018 Sergio Zanchetta (Associazione PNLUG - Gruppo Odoo)
# Copyright 2018 Lorenzo Battistini <https://github.com/eLBati>
# Copyright 2020 Gianmarco Conte <gconte@dinamicheaziendali.it>
# Copyright 2022 Marco Colombo <marco.colombo@phi.technology>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).

{
"name": "ITA - Contabilità base",
"summary": "Modulo base usato come dipendenza di altri moduli contabili",
"version": "16.0.1.0.0",
"development_status": "Production/Stable",
"category": "Hidden",
"author": "Agile Business Group, Abstract, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/l10n-italy",
"license": "AGPL-3",
"depends": [
"account_fiscal_year",
"account_tax_balance",
"date_range",
"web",
],
"data": [
"views/account_setting.xml",
"views/account_menuitem.xml",
"views/partner_view.xml",
"views/product_view.xml",
"views/res_config_settings_views.xml",
"reports/account_reports_view.xml",
"views/account_view.xml",
],
"assets": {
"web.minimal_layout": [
"l10n_it_account/static/src/css/*.css",
]
},
"external_dependencies": {
"python": [
"xmlschema",
],
},
"installable": True,
"post_init_hook": "_l10n_it_account_post_init",
}
176 changes: 176 additions & 0 deletions l10n_it_account/i18n/es_AR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,176 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * l10n_it_account
#
# Translators:
# Anael M <anaelwendel@live.com.ar>, 2017
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 10.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-08 03:45+0000\n"
"PO-Revision-Date: 2017-12-08 03:45+0000\n"
"Last-Translator: Anael M <anaelwendel@live.com.ar>, 2017\n"
"Language-Team: Spanish (Argentina) (https://www.transifex.com/oca/"
"teams/23907/es_AR/)\n"
"Language: es_AR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"

#. module: l10n_it_account
#: model_terms:ir.ui.view,arch_db:l10n_it_account.internal_layout
msgid ""
"<br/>\n"
" <span class=\"text-right\">TIN: </span>"
msgstr ""

#. module: l10n_it_account
#: model:ir.model,name:l10n_it_account.model_account_account
msgid "Account"
msgstr ""

#. module: l10n_it_account
#: model:ir.model,name:l10n_it_account.model_account_group
msgid "Account Group"
msgstr ""

#. module: l10n_it_account
#: model:ir.model,name:l10n_it_account.model_account_account_type
msgid "Account Type"
msgstr ""

#. module: l10n_it_account
#: model_terms:ir.ui.view,arch_db:l10n_it_account.product_template_form_view
#: model_terms:ir.ui.view,arch_db:l10n_it_account.res_config_settings_view_form
#: model_terms:ir.ui.view,arch_db:l10n_it_account.view_partner_property_form
msgid "Accounting"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_group__account_ids
msgid "Accounts"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account_type__account_balance_sign
#: model:ir.model.fields,field_description:l10n_it_account.field_account_group__account_balance_sign
msgid "Balance sign"
msgstr ""

#. module: l10n_it_account
#: code:addons/l10n_it_account/models/account_type.py:0
#, python-format
msgid "Balance sign's value can only be 1 or -1."
msgstr ""

#. module: l10n_it_account
#: code:addons/l10n_it_account/models/account_group.py:0
#, python-format
msgid ""
"Can't set '{}' as parent for group '{}'.\n"
"{}"
msgstr ""

#. module: l10n_it_account
#: model:ir.ui.menu,name:l10n_it_account.menu_date_range_type_action_accounting
msgid "Date Range Types"
msgstr ""

#. module: l10n_it_account
#: model:ir.ui.menu,name:l10n_it_account.menu_date_range_action_accounting
msgid "Date Ranges"
msgstr ""

#. module: l10n_it_account
#: model:ir.ui.menu,name:l10n_it_account.menu_date_range_accounting
msgid "Date ranges"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax__deductible_balance
msgid "Deductible Balance"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account__display_name
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account_type__display_name
#: model:ir.model.fields,field_description:l10n_it_account.field_account_group__display_name
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax__display_name
msgid "Display Name"
msgstr ""

#. module: l10n_it_account
#: model:ir.ui.menu,name:l10n_it_account.menu_date_range_generator_action
msgid "Generate Date Ranges"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account__id
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account_type__id
#: model:ir.model.fields,field_description:l10n_it_account.field_account_group__id
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax__id
msgid "ID"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax__cee_type
msgid "Include in VAT register"
msgstr ""

#. module: l10n_it_account
#: code:addons/l10n_it_account/models/account_group.py:0
#, python-format
msgid "Incoherent balance signs for '{}' and its subgroups."
msgstr ""

#. module: l10n_it_account
#: model:ir.ui.menu,name:l10n_it_account.account_italian_localization
msgid "Italian Localization"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account____last_update
#: model:ir.model.fields,field_description:l10n_it_account.field_account_account_type____last_update
#: model:ir.model.fields,field_description:l10n_it_account.field_account_group____last_update
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax____last_update
msgid "Last Modified on"
msgstr ""

#. module: l10n_it_account
#: model_terms:ir.ui.view,arch_db:l10n_it_account.internal_layout
msgid "Page:"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax__parent_tax_ids
msgid "Parent Taxes"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields.selection,name:l10n_it_account.selection__account_tax__cee_type__purchase
msgid "Purchase"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields.selection,name:l10n_it_account.selection__account_tax__cee_type__sale
msgid "Sale"
msgstr ""

#. module: l10n_it_account
#: model:ir.model,name:l10n_it_account.model_account_tax
msgid "Tax"
msgstr "Impuesto"

#. module: l10n_it_account
#: model:ir.model.fields,field_description:l10n_it_account.field_account_tax__undeductible_balance
msgid "Undeductible Balance"
msgstr ""

#. module: l10n_it_account
#: model:ir.model.fields,help:l10n_it_account.field_account_tax__cee_type
msgid ""
"Use in the case of tax with 'VAT integration'. This specifies the VAT "
"register (sales / purchases) where the tax must be computed."
msgstr ""
Loading

0 comments on commit d7b5d06

Please sign in to comment.