Skip to content

Commit

Permalink
Merge PR #1265 into 15.0
Browse files Browse the repository at this point in the history
Signed-off-by JordiBForgeFlow
  • Loading branch information
OCA-git-bot committed Oct 26, 2022
2 parents e30b9f8 + 7d79e94 commit b0a3ce0
Show file tree
Hide file tree
Showing 23 changed files with 947 additions and 0 deletions.
88 changes: 88 additions & 0 deletions account_invoice_blocking/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
========================
Account Invoice Blocking
========================

.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! 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%2Faccount--invoicing-lightgray.png?logo=github
:target: https://github.com/OCA/account-invoicing/tree/14.0/account_invoice_blocking
:alt: OCA/account-invoicing
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/account-invoicing-14-0/account-invoicing-14-0-account_invoice_blocking
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/95/14.0
:alt: Try me on Runbot

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

This module allows the user to set a blocking (No Follow-up) flag directly on the invoice. This facilitates the blocking of the invoice's move lines.

**Table of contents**

.. contents::
:local:

Usage
=====

You can set the No Follow-up flag on invoices.

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

Future possible improvement :
Blocking invoice can also mean "do not send overdue reminders", so the blocking flag could be displayed on both supplier and customer invoices.

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

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

* Acsone SA/NV

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

* Adrien Peiffer <[email protected]>
* Stéphane Bidoul <[email protected]>
* Thomas Binsfeld <[email protected]>
* Andrea Stirpe <[email protected]>
* Nikul Chaudhary <[email protected]>

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/account-invoicing <https://github.com/OCA/account-invoicing/tree/14.0/account_invoice_blocking>`_ 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 account_invoice_blocking/__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
14 changes: 14 additions & 0 deletions account_invoice_blocking/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Copyright 2016 Acsone SA/NV
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).

{
"name": "Account Invoice Blocking",
"summary": "Set a blocking (No Follow-up) flag on invoices",
"version": "15.0.1.0.1",
"license": "AGPL-3",
"category": "Accounting",
"author": "Acsone SA/NV,Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-invoicing",
"depends": ["account"],
"data": ["views/account_move.xml"],
}
41 changes: 41 additions & 0 deletions account_invoice_blocking/i18n/account_invoice_blocking.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_move__display_name
msgid "Display Name"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_move__id
msgid "ID"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_move
msgid "Journal Entry"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_move____last_update
msgid "Last Modified on"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_bank_statement_line__blocked
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_move__blocked
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_payment__blocked
msgid "No Follow-up"
msgstr ""
38 changes: 38 additions & 0 deletions account_invoice_blocking/i18n/de.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2020-06-12 13:19+0000\n"
"Last-Translator: Maria Sparenberg <[email protected]>\n"
"Language-Team: none\n"
"Language: de\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"
"X-Generator: Weblate 3.10\n"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "Draft Blocked"
msgstr "Entwurf blockiert"

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_invoice
msgid "Invoice"
msgstr "Rechnung"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__blocked
#: model_terms:ir.ui.view,arch_db:account_invoice_blocking.account_invoice_form_view
msgid "No Follow-up"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,help:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "This flag facilitates the blocking of the invoice's move lines."
msgstr ""
38 changes: 38 additions & 0 deletions account_invoice_blocking/i18n/es.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-03-11 13:45+0000\n"
"Last-Translator: Ana Suárez <[email protected]>\n"
"Language-Team: none\n"
"Language: es\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"
"X-Generator: Weblate 4.3.2\n"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "Draft Blocked"
msgstr "Bloqueado Borrador"

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_invoice
msgid "Invoice"
msgstr "Factura"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__blocked
#: model_terms:ir.ui.view,arch_db:account_invoice_blocking.account_invoice_form_view
msgid "No Follow-up"
msgstr "Sin seguimiento"

#. module: account_invoice_blocking
#: model:ir.model.fields,help:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "This flag facilitates the blocking of the invoice's move lines."
msgstr ""
39 changes: 39 additions & 0 deletions account_invoice_blocking/i18n/hr.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2020-03-05 16:13+0000\n"
"Last-Translator: Bole <[email protected]>\n"
"Language-Team: none\n"
"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<="
"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Weblate 3.10\n"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "Draft Blocked"
msgstr "Nacrt blokiran"

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_invoice
msgid "Invoice"
msgstr "Račun"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__blocked
#: model_terms:ir.ui.view,arch_db:account_invoice_blocking.account_invoice_form_view
msgid "No Follow-up"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,help:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "This flag facilitates the blocking of the invoice's move lines."
msgstr ""
39 changes: 39 additions & 0 deletions account_invoice_blocking/i18n/nl.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 11.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2018-12-14 10:58+0000\n"
"Last-Translator: Yung-Wa <[email protected]>\n"
"Language-Team: none\n"
"Language: nl\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"
"X-Generator: Weblate 3.3\n"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "Draft Blocked"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_invoice
msgid "Invoice"
msgstr "Factuur"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__blocked
#: model_terms:ir.ui.view,arch_db:account_invoice_blocking.account_invoice_form_view
msgid "No Follow-up"
msgstr "Geen opvolging"

#. module: account_invoice_blocking
#: model:ir.model.fields,help:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "This flag facilitates the blocking of the invoice's move lines."
msgstr ""
"De optie maakt het mogelijk om factuuregels uit te sluiten van opvolging."
38 changes: 38 additions & 0 deletions account_invoice_blocking/i18n/pt.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: 2021-03-15 21:45+0000\n"
"Last-Translator: Pedro Castro Silva <[email protected]>\n"
"Language-Team: none\n"
"Language: pt\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"
"X-Generator: Weblate 4.3.2\n"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "Draft Blocked"
msgstr "Rascunho Bloqueado"

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_invoice
msgid "Invoice"
msgstr "Fatura"

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__blocked
#: model_terms:ir.ui.view,arch_db:account_invoice_blocking.account_invoice_form_view
msgid "No Follow-up"
msgstr "Sem Seguimento"

#. module: account_invoice_blocking
#: model:ir.model.fields,help:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "This flag facilitates the blocking of the invoice's move lines."
msgstr "Esta flag facilita o bloqueio das linhas de movimentos da fatura."
36 changes: 36 additions & 0 deletions account_invoice_blocking/i18n/pt_BR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_invoice_blocking
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 12.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: pt_BR\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: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "Draft Blocked"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model,name:account_invoice_blocking.model_account_invoice
msgid "Invoice"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,field_description:account_invoice_blocking.field_account_invoice__blocked
#: model_terms:ir.ui.view,arch_db:account_invoice_blocking.account_invoice_form_view
msgid "No Follow-up"
msgstr ""

#. module: account_invoice_blocking
#: model:ir.model.fields,help:account_invoice_blocking.field_account_invoice__draft_blocked
msgid "This flag facilitates the blocking of the invoice's move lines."
msgstr ""
3 changes: 3 additions & 0 deletions account_invoice_blocking/models/__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 account_move
Loading

0 comments on commit b0a3ce0

Please sign in to comment.