diff --git a/account_move_original_partner/README.rst b/account_move_original_partner/README.rst new file mode 100644 index 00000000000..4df155b3b3d --- /dev/null +++ b/account_move_original_partner/README.rst @@ -0,0 +1,90 @@ +=============================== +Acccount Move Original Partners +=============================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:de9f2b990c1e0760825c9ea34c8356bea292326839d7005d36f5fc194abc5cb4 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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/16.0/account_move_original_partner + :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-16-0/account-invoicing-16-0-account_move_original_partner + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/account-invoicing&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +When invoicing multiple sale orders at the same time, they may be grouped into +a single invoice. When it happens, it is hard to retrieve who the original SO +partners were. + +This module helps by retrieving such partners and showing them into the invoice +form view, alongside the invoice partner itself. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* `Camptocamp `_ + + * Silvio Gregorini + +Other credits +~~~~~~~~~~~~~ + +The development of this module has been financially supported by: + +* Camptocamp + +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 `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_move_original_partner/__init__.py b/account_move_original_partner/__init__.py new file mode 100644 index 00000000000..e69f2a68606 --- /dev/null +++ b/account_move_original_partner/__init__.py @@ -0,0 +1,5 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import models + +from .hooks import post_init_hook diff --git a/account_move_original_partner/__manifest__.py b/account_move_original_partner/__manifest__.py new file mode 100644 index 00000000000..961b7d95e80 --- /dev/null +++ b/account_move_original_partner/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright 2021 Camptocamp +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +{ + "name": "Acccount Move Original Partners", + "version": "16.0.1.0.0", + "summary": "Display original customers when creating invoices from" + " multiple sale orders.", + "author": "Camptocamp, Odoo Community Association (OCA)", + "website": "https://github.com/OCA/account-invoicing", + "license": "AGPL-3", + "category": "Accounting & Finance", + "depends": ["sale"], + "data": ["views/account_move.xml"], + "installable": True, + "post_init_hook": "post_init_hook", +} diff --git a/account_move_original_partner/hooks.py b/account_move_original_partner/hooks.py new file mode 100644 index 00000000000..599fd569965 --- /dev/null +++ b/account_move_original_partner/hooks.py @@ -0,0 +1,27 @@ +# Copyright 2021 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) + +from logging import getLogger + +from odoo import SUPERUSER_ID, api + +_logger = getLogger(__name__) + + +def post_init_hook(cr, registry): + env = api.Environment(cr, SUPERUSER_ID, {}) + force_compute_original_partners(env) + + +def force_compute_original_partners(env): + """Force compute original partners. + + Since field `original_partner_ids` is not automatically computed upon + module installation, we need to compute it manually on existing records. + + :param env: an Odoo Environment instance + """ + domain = [("move_type", "=", "out_invoice")] + invs = env["account.move"].search(domain) + _logger.info("Force-compute original partners on %s invoices" % len(invs)) + invs._compute_original_partner_ids() diff --git a/account_move_original_partner/i18n/account_move_original_partner.pot b/account_move_original_partner/i18n/account_move_original_partner.pot new file mode 100644 index 00000000000..88918299ed5 --- /dev/null +++ b/account_move_original_partner/i18n/account_move_original_partner.pot @@ -0,0 +1,26 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_original_partner +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 15.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_move_original_partner +#: model:ir.model,name:account_move_original_partner.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_move_original_partner +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_bank_statement_line__original_partner_ids +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_move__original_partner_ids +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_payment__original_partner_ids +msgid "Original Partners" +msgstr "" diff --git a/account_move_original_partner/i18n/ca.po b/account_move_original_partner/i18n/ca.po new file mode 100644 index 00000000000..6469ab570fd --- /dev/null +++ b/account_move_original_partner/i18n/ca.po @@ -0,0 +1,42 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_move_original_partner +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: ca\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_move_original_partner +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_move__display_name +msgid "Display Name" +msgstr "" + +#. module: account_move_original_partner +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_move__id +msgid "ID" +msgstr "" + +#. module: account_move_original_partner +#: model:ir.model,name:account_move_original_partner.model_account_move +msgid "Journal Entry" +msgstr "" + +#. module: account_move_original_partner +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_move____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_move_original_partner +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_bank_statement_line__original_partner_ids +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_move__original_partner_ids +#: model:ir.model.fields,field_description:account_move_original_partner.field_account_payment__original_partner_ids +msgid "Original Partners" +msgstr "" diff --git a/account_move_original_partner/models/__init__.py b/account_move_original_partner/models/__init__.py new file mode 100644 index 00000000000..9c0a4213854 --- /dev/null +++ b/account_move_original_partner/models/__init__.py @@ -0,0 +1 @@ +from . import account_move diff --git a/account_move_original_partner/models/account_move.py b/account_move_original_partner/models/account_move.py new file mode 100644 index 00000000000..d124ccc8d01 --- /dev/null +++ b/account_move_original_partner/models/account_move.py @@ -0,0 +1,26 @@ +# Copyright 2021 Camptocamp SA +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html) + +from odoo import api, fields, models + + +class AccountMove(models.Model): + _inherit = "account.move" + + original_partner_ids = fields.Many2many( + comodel_name="res.partner", + relation="account_move_original_partner_rel", + column1="account_move_id", + column2="res_partner_id", + compute="_compute_original_partner_ids", + store=True, + string="Original Partners", + ) + + @api.depends("move_type", "invoice_line_ids.sale_line_ids.order_id.partner_id") + def _compute_original_partner_ids(self): + for move in self: + move.original_partner_ids = ( + move.move_type == "out_invoice" + and move.invoice_line_ids.mapped("sale_line_ids.order_id.partner_id") + ) diff --git a/account_move_original_partner/readme/CONTRIBUTORS.rst b/account_move_original_partner/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000000..60641f5f92c --- /dev/null +++ b/account_move_original_partner/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Camptocamp `_ + + * Silvio Gregorini diff --git a/account_move_original_partner/readme/CREDITS.rst b/account_move_original_partner/readme/CREDITS.rst new file mode 100644 index 00000000000..f5cc070c78e --- /dev/null +++ b/account_move_original_partner/readme/CREDITS.rst @@ -0,0 +1,3 @@ +The development of this module has been financially supported by: + +* Camptocamp diff --git a/account_move_original_partner/readme/DESCRIPTION.rst b/account_move_original_partner/readme/DESCRIPTION.rst new file mode 100644 index 00000000000..f886be002da --- /dev/null +++ b/account_move_original_partner/readme/DESCRIPTION.rst @@ -0,0 +1,6 @@ +When invoicing multiple sale orders at the same time, they may be grouped into +a single invoice. When it happens, it is hard to retrieve who the original SO +partners were. + +This module helps by retrieving such partners and showing them into the invoice +form view, alongside the invoice partner itself. diff --git a/account_move_original_partner/static/description/icon.png b/account_move_original_partner/static/description/icon.png new file mode 100644 index 00000000000..3a0328b516c Binary files /dev/null and b/account_move_original_partner/static/description/icon.png differ diff --git a/account_move_original_partner/static/description/index.html b/account_move_original_partner/static/description/index.html new file mode 100644 index 00000000000..faf7987612d --- /dev/null +++ b/account_move_original_partner/static/description/index.html @@ -0,0 +1,435 @@ + + + + + +Acccount Move Original Partners + + + +
+

Acccount Move Original Partners

+ + +

Beta License: AGPL-3 OCA/account-invoicing Translate me on Weblate Try me on Runboat

+

When invoicing multiple sale orders at the same time, they may be grouped into +a single invoice. When it happens, it is hard to retrieve who the original SO +partners were.

+

This module helps by retrieving such partners and showing them into the invoice +form view, alongside the invoice partner itself.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • Camptocamp
  • +
+
+ +
+

Other credits

+

The development of this module has been financially supported by:

+
    +
  • Camptocamp
  • +
+
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

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 project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_move_original_partner/views/account_move.xml b/account_move_original_partner/views/account_move.xml new file mode 100644 index 00000000000..23e4067be37 --- /dev/null +++ b/account_move_original_partner/views/account_move.xml @@ -0,0 +1,36 @@ + + + + + view.account.invoice.filter.inherit + account.move + + + + + + + + + + view.move.form.inherit + account.move + + + + + + + + + diff --git a/setup/account_move_original_partner/odoo/addons/account_move_original_partner b/setup/account_move_original_partner/odoo/addons/account_move_original_partner new file mode 120000 index 00000000000..9294c096228 --- /dev/null +++ b/setup/account_move_original_partner/odoo/addons/account_move_original_partner @@ -0,0 +1 @@ +../../../../account_move_original_partner \ No newline at end of file diff --git a/setup/account_move_original_partner/setup.py b/setup/account_move_original_partner/setup.py new file mode 100644 index 00000000000..28c57bb6403 --- /dev/null +++ b/setup/account_move_original_partner/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)