diff --git a/account_payment_order_notification/README.rst b/account_payment_order_notification/README.rst new file mode 100644 index 000000000..66e20bae0 --- /dev/null +++ b/account_payment_order_notification/README.rst @@ -0,0 +1,114 @@ +================================== +Account Payment Order Notification +================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fbank--payment-lightgray.png?logo=github + :target: https://github.com/OCA/bank-payment/tree/13.0/account_payment_order_notification + :alt: OCA/bank-payment +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/bank-payment-13-0/bank-payment-13-0-account_payment_order_notification + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/173/13.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module adds a button on debit / payment orders to send an email to each related partner with the details of their transactions. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To configure this module, you need to: + +#. Go to *Invoicing > Configuration > Payment Modes* and create a payment mode if you wish. + +#. Go to *Invoicing > Customers > Customers* and creates a new record as follows: + * Name: Test customer 1 + * Email: customer1@test.com + +#. Go to *Invoicing > Customers > Customers* and creates a new record as follows: + * Name: Test customer 2 + * Email: (empty) + +Usage +===== + +#. Go to *Invoicing > Customers > Invoices* and creates one or more invoices linked to the payment mode. +#. Go to *Invoicing > Customers > Invoices* select the invoices created and execute the action called "Post entries". +#. Go to *Invoicing > Customers > Invoices* select the invoices created and execute the action called "Add to Payment/Debit Order" and creates a payment order. +#. Click on "Confirm Payments" button. +#. Click on "Generate Payment File" button. +#. Click on "File Successfully Uploaded" button. +#. Click on "Send mails" button. +#. Any involved partner with no email will appear with the column "To send" not checked. +#. Click on "Confirm" button. +#. An email will have been sent to the selected partners. +#. A reminder note will have been created. + +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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Tecnativa + +Contributors +~~~~~~~~~~~~ + +* `Tecnativa `_: + + * Víctor Martínez + * Pedro M. Baeza + +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. + +.. |maintainer-victoralmau| image:: https://github.com/victoralmau.png?size=40px + :target: https://github.com/victoralmau + :alt: victoralmau + +Current `maintainer `__: + +|maintainer-victoralmau| + +This module is part of the `OCA/bank-payment `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_payment_order_notification/__init__.py b/account_payment_order_notification/__init__.py new file mode 100644 index 000000000..9b4296142 --- /dev/null +++ b/account_payment_order_notification/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import wizard diff --git a/account_payment_order_notification/__manifest__.py b/account_payment_order_notification/__manifest__.py new file mode 100644 index 000000000..23dd90c56 --- /dev/null +++ b/account_payment_order_notification/__manifest__.py @@ -0,0 +1,20 @@ +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). +{ + "name": "Account Payment Order Notification", + "version": "13.0.1.0.1", + "category": "Banking addons", + "website": "https://github.com/OCA/bank-payment", + "author": "Tecnativa, Odoo Community Association (OCA)", + "license": "AGPL-3", + "depends": ["account_payment_order"], + "installable": True, + "data": [ + "security/ir.model.access.csv", + "data/mail_template_data.xml", + "wizard/wizard_account_payment_order_notification_views.xml", + "views/account_payment_order_view.xml", + "views/account_payment_order_notification_view.xml", + ], + "maintainers": ["victoralmau"], +} diff --git a/account_payment_order_notification/data/mail_template_data.xml b/account_payment_order_notification/data/mail_template_data.xml new file mode 100644 index 000000000..07c03a997 --- /dev/null +++ b/account_payment_order_notification/data/mail_template_data.xml @@ -0,0 +1,48 @@ + + + + Payment Order Notification: Send by email + + ${user.email_formatted |safe} + ${object.partner_id.id} + ${object.company_id.name} Payment Order (Ref ${object.order_id.name or 'n/a'}) + +

Hello ${object.partner_id.name or ''},

+ % if object.order_id.payment_type == 'inbound': +

A debit order including at least one of your invoices has been processed and sent to the bank.

+ % else: +

A payment order including at least one of your invoices has been processed and sent to the bank.

+ % endif +

It includes the following transactions:

+ + + + + + + + + % for payment_line in object.payment_line_ids: + + + + + + % endfor +
NumberDateAmount
${payment_line.communication}${payment_line.date}${format_amount(payment_line.amount_currency, payment_line.currency_id)}
+

Do not hesitate to contact us if you have any questions.

+ + ]]>
+ ${object.partner_id.lang} + + +
+
diff --git a/account_payment_order_notification/i18n/account_payment_order_notification.pot b/account_payment_order_notification/i18n/account_payment_order_notification.pot new file mode 100644 index 000000000..5d5e52d10 --- /dev/null +++ b/account_payment_order_notification/i18n/account_payment_order_notification.pot @@ -0,0 +1,330 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order_notification +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.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_payment_order_notification +#: model:mail.template,body_html:account_payment_order_notification.email_account_payment_order_notification +msgid "" +"\n" +"
\n" +"

Hello ${object.partner_id.name or ''},

\n" +" % if object.order_id.payment_type == 'inbound':\n" +"

A debit order including at least one of your invoices has been processed and sent to the bank.

\n" +" % else:\n" +"

A payment order including at least one of your invoices has been processed and sent to the bank.

\n" +" % endif\n" +"

It includes the following transactions:

\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % for payment_line in object.payment_line_ids:\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % endfor\n" +"
NumberDateAmount
${payment_line.communication}${payment_line.date}${format_amount(payment_line.amount_currency, payment_line.currency_id)}
\n" +"

Do not hesitate to contact us if you have any questions.

\n" +"
\n" +" " +msgstr "" + +#. module: account_payment_order_notification +#: model:mail.template,subject:account_payment_order_notification.email_account_payment_order_notification +msgid "" +"${object.company_id.name} Payment Order (Ref ${object.order_id.name or " +"'n/a'})" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_needaction +msgid "Action Needed" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_attachment_count +msgid "Attachment Count" +msgstr "" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.wizard_account_payment_order_notification_form +msgid "Cancel" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__company_id +msgid "Company" +msgstr "" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.wizard_account_payment_order_notification_form +msgid "Confirm" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__create_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__create_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__create_uid +msgid "Created by" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__create_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__create_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__create_date +msgid "Created on" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__display_name +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__display_name +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__display_name +msgid "Display Name" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__email +msgid "Email" +msgstr "" + +#. module: account_payment_order_notification +#: code:addons/account_payment_order_notification/models/account_payment_order.py:0 +#, python-format +msgid "Email has been sent to the following partners: %s" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_follower_ids +msgid "Followers" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_channel_ids +msgid "Followers (Channels)" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_partner_ids +msgid "Followers (Partners)" +msgstr "" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_notification_search +msgid "Group By" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__id +msgid "ID" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_needaction +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_unread +msgid "If checked, new messages require your attention." +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_has_error +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_is_follower +msgid "Is Follower" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification____last_update +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification____last_update +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__write_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__write_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__write_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__write_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__line_ids +msgid "Lines" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__mail_template_id +msgid "Mail Template" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_main_attachment_id +msgid "Main Attachment" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_has_error +msgid "Message Delivery error" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_ids +msgid "Messages" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order__notification_count +msgid "Notification count" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order__notification_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_form +msgid "Notifications" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_needaction_counter +msgid "Number of Actions" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_has_error_counter +msgid "Number of errors" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_unread_counter +msgid "Number of unread messages" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__order_id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__order_id +msgid "Order" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__parent_id +msgid "Parent" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__partner_id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__partner_id +msgid "Partner" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__payment_line_ids +msgid "Payment Line" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_notification_search +msgid "Payment Order" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_account_payment_order_notification +msgid "Payment Order Notification" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.actions.act_window,name:account_payment_order_notification.account_payment_order_notification_action +msgid "Payment Order Notifications" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_has_sms_error +msgid "SMS Delivery error" +msgstr "" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_form +msgid "Send mails" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.actions.act_window,name:account_payment_order_notification.wizard_account_payment_order_notification_action +msgid "Send notifications" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__to_send +msgid "To send" +msgstr "" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_notification_form +msgid "Transactions" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_unread +msgid "Unread Messages" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_unread_counter +msgid "Unread Messages Counter" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__website_message_ids +msgid "Website Messages" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__website_message_ids +msgid "Website communication history" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_wizard_account_payment_order_notification +msgid "Wizard Account Payment Order Notification" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_wizard_account_payment_order_notification_line +msgid "Wizard Account Payment Order Notification Line" +msgstr "" diff --git a/account_payment_order_notification/i18n/es.po b/account_payment_order_notification/i18n/es.po new file mode 100644 index 000000000..62f236fa6 --- /dev/null +++ b/account_payment_order_notification/i18n/es.po @@ -0,0 +1,373 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_payment_order_notification +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2022-10-19 06:43+0000\n" +"PO-Revision-Date: 2022-10-19 08:44+0200\n" +"Last-Translator: \n" +"Language-Team: \n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: \n" +"X-Generator: Poedit 3.0.1\n" + +#. module: account_payment_order_notification +#: model:mail.template,body_html:account_payment_order_notification.email_account_payment_order_notification +msgid "" +"\n" +"
\n" +"

Hello ${object.partner_id.name or ''},

\n" +" % if object.order_id.payment_type == 'inbound':\n" +"

A debit order including at least one of your invoices has been " +"processed and sent to the bank.

\n" +" % else:\n" +"

A payment order including at least one of your invoices has been " +"processed and sent to the bank.

\n" +" % endif\n" +"

It includes the following transactions:

\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % for payment_line in object.payment_line_ids:\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % endfor\n" +"
NumberDateAmount
${payment_line.communication}${payment_line.date}${format_amount(payment_line.amount_currency, " +"payment_line.currency_id)}
\n" +"

Do not hesitate to contact us if you have any questions.

\n" +"
\n" +" " +msgstr "" +"\n" +"
\n" +"

Hola ${object.partner_id.name or ''},

\n" +" % if object.order_id.payment_type == 'inbound':\n" +"

Se ha procesado y enviado al banco una orden de débito que " +"incluye al menos una de sus facturas.

\n" +" % else:\n" +"

Se ha procesado y enviado al banco una orden de pago que incluye " +"al menos una de sus facturas.

\n" +" % endif\n" +"

Incluye las siguientes transacciones:

\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % for payment_line in object.payment_line_ids:\n" +" \n" +" \n" +" \n" +" \n" +" \n" +" % endfor\n" +"
NúmeroFechaImporte
${payment_line.communication}${payment_line.date}${format_amount(payment_line.amount_currency, " +"payment_line.currency_id)}
\n" +"

No dude en ponerse en contacto con nosotros si tiene alguna pregunta." +"

\n" +"
\n" +" " + +#. module: account_payment_order_notification +#: model:mail.template,subject:account_payment_order_notification.email_account_payment_order_notification +msgid "" +"${object.company_id.name} Payment Order (Ref ${object.order_id.name or 'n/" +"a'})" +msgstr "Orden de pago ${object.company_id.name} (Ref ${object.name or 'n/a'})" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_needaction +msgid "Action Needed" +msgstr "Acción necesariaa" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_attachment_count +msgid "Attachment Count" +msgstr "Total de adjuntos" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.wizard_account_payment_order_notification_form +msgid "Cancel" +msgstr "Cancelar" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__company_id +msgid "Company" +msgstr "Compañía" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.wizard_account_payment_order_notification_form +msgid "Confirm" +msgstr "Confirmar" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__create_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__create_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__create_uid +msgid "Created by" +msgstr "Creado por" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__create_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__create_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__create_date +msgid "Created on" +msgstr "Creado el" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__display_name +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__display_name +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__email +msgid "Email" +msgstr "Email" + +#. module: account_payment_order_notification +#: code:addons/account_payment_order_notification/models/account_payment_order.py:0 +#, python-format +msgid "Email has been sent to the following partners: %s" +msgstr "Se ha enviado un correo electrónico a las siguientes empresas: %s" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_follower_ids +msgid "Followers" +msgstr "Seguidores" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_channel_ids +msgid "Followers (Channels)" +msgstr "Seguidores (Canales)" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_partner_ids +msgid "Followers (Partners)" +msgstr "Seguidores (Contactos)" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_notification_search +msgid "Group By" +msgstr "Agrupar por" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__id +msgid "ID" +msgstr "ID" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_needaction +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_unread +msgid "If checked, new messages require your attention." +msgstr "Si está marcado, hay nuevos mensajes que requieren de su atención." + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_has_error +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_has_sms_error +msgid "If checked, some messages have a delivery error." +msgstr "Si está marcado, hay mensajes que tienen error de entrega." + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_is_follower +msgid "Is Follower" +msgstr "Es seguidor" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification____last_update +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification____last_update +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__write_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__write_uid +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__write_uid +msgid "Last Updated by" +msgstr "Última modificación por" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__write_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__write_date +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__write_date +msgid "Last Updated on" +msgstr "Última actualización en" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__line_ids +msgid "Lines" +msgstr "Líneas" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__mail_template_id +msgid "Mail Template" +msgstr "Plantilla de email" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_main_attachment_id +msgid "Main Attachment" +msgstr "Adjunto principal" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_has_error +msgid "Message Delivery error" +msgstr "Mensaje de error de entrega" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_ids +msgid "Messages" +msgstr "Mensajes" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order__notification_count +msgid "Notification count" +msgstr "Enviar notificaciones" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order__notification_ids +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_form +msgid "Notifications" +msgstr "Enviar notificaciones" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_needaction_counter +msgid "Number of Actions" +msgstr "Número de acciones" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_has_error_counter +msgid "Number of errors" +msgstr "Número de errores" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_needaction_counter +msgid "Number of messages which requires an action" +msgstr "Nº de mensajes que requieren acción" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_has_error_counter +msgid "Number of messages with delivery error" +msgstr "Nº de mensajes con error de entrega" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__message_unread_counter +msgid "Number of unread messages" +msgstr "Número de mensajes no leídos" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__order_id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification__order_id +msgid "Order" +msgstr "Pedido" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__parent_id +msgid "Parent" +msgstr "Padre" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__partner_id +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__partner_id +msgid "Partner" +msgstr "Empresa" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__payment_line_ids +msgid "Payment Line" +msgstr "Orden de pago" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_account_payment_order +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_notification_search +msgid "Payment Order" +msgstr "Orden de pago" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_account_payment_order_notification +msgid "Payment Order Notification" +msgstr "Enviar notificaciones" + +#. module: account_payment_order_notification +#: model:ir.actions.act_window,name:account_payment_order_notification.account_payment_order_notification_action +msgid "Payment Order Notifications" +msgstr "Enviar notificaciones" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_has_sms_error +msgid "SMS Delivery error" +msgstr "Error de entrega de SMS" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_form +msgid "Send mails" +msgstr "Enviar emails" + +#. module: account_payment_order_notification +#: model:ir.actions.act_window,name:account_payment_order_notification.wizard_account_payment_order_notification_action +msgid "Send notifications" +msgstr "Enviar notificaciones" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_wizard_account_payment_order_notification_line__to_send +msgid "To send" +msgstr "A enviar" + +#. module: account_payment_order_notification +#: model_terms:ir.ui.view,arch_db:account_payment_order_notification.account_payment_order_notification_form +msgid "Transactions" +msgstr "Transacciones" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_unread +msgid "Unread Messages" +msgstr "Mensajes no leídos" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__message_unread_counter +msgid "Unread Messages Counter" +msgstr "Contador de mensajes sin leer" + +#. module: account_payment_order_notification +#: model:ir.model.fields,field_description:account_payment_order_notification.field_account_payment_order_notification__website_message_ids +msgid "Website Messages" +msgstr "Mensajes del sitio web" + +#. module: account_payment_order_notification +#: model:ir.model.fields,help:account_payment_order_notification.field_account_payment_order_notification__website_message_ids +msgid "Website communication history" +msgstr "Historial de comunicación del sitio web" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_wizard_account_payment_order_notification +msgid "Wizard Account Payment Order Notification" +msgstr "" + +#. module: account_payment_order_notification +#: model:ir.model,name:account_payment_order_notification.model_wizard_account_payment_order_notification_line +msgid "Wizard Account Payment Order Notification Line" +msgstr "" diff --git a/account_payment_order_notification/models/__init__.py b/account_payment_order_notification/models/__init__.py new file mode 100644 index 000000000..e9b0f4158 --- /dev/null +++ b/account_payment_order_notification/models/__init__.py @@ -0,0 +1,2 @@ +from . import account_payment_order_notification +from . import account_payment_order diff --git a/account_payment_order_notification/models/account_payment_order.py b/account_payment_order_notification/models/account_payment_order.py new file mode 100644 index 000000000..12098a582 --- /dev/null +++ b/account_payment_order_notification/models/account_payment_order.py @@ -0,0 +1,45 @@ +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import _, fields, models + + +class AccountPaymentOrder(models.Model): + _inherit = "account.payment.order" + + notification_ids = fields.One2many( + comodel_name="account.payment.order.notification", + inverse_name="order_id", + string="Notifications", + ) + notification_count = fields.Integer( + string="Notification count", compute="_compute_notification_count" + ) + + def _compute_notification_count(self): + notification_data = self.env["account.payment.order.notification"].read_group( + [("order_id", "in", self.ids)], ["order_id"], ["order_id"] + ) + mapped_data = {r["order_id"][0]: r["order_id_count"] for r in notification_data} + for record in self: + record.notification_count = mapped_data.get(record.id, 0) + + def action_view_notifications(self): + self.ensure_one() + xml_id = "%s.%s" % ( + "account_payment_order_notification", + "account_payment_order_notification_action", + ) + action = self.env.ref(xml_id).read()[0] + action["domain"] = [("order_id", "=", self.id)] + return action + + def _action_send_mail_notifications(self, template): + for notification in self.notification_ids: + notification.message_post_with_template(template.id) + + def _action_create_note_from_notifications(self): + body = _("Email has been sent to the following partners: %s") % ( + ", ".join(self.mapped("notification_ids.partner_id.name")) + ) + self.message_post(body=body) diff --git a/account_payment_order_notification/models/account_payment_order_notification.py b/account_payment_order_notification/models/account_payment_order_notification.py new file mode 100644 index 000000000..5164899fd --- /dev/null +++ b/account_payment_order_notification/models/account_payment_order_notification.py @@ -0,0 +1,44 @@ +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AccountPaymentOrderNotification(models.Model): + _name = "account.payment.order.notification" + _description = "Payment Order Notification" + _inherit = ["mail.thread"] + + order_id = fields.Many2one( + comodel_name="account.payment.order", required=True, readonly=True, + ) + company_id = fields.Many2one(related="order_id.company_id") + partner_id = fields.Many2one( + comodel_name="res.partner", required=True, readonly=True, + ) + payment_line_ids = fields.Many2many( + comodel_name="account.payment.line", readonly=True + ) + display_name = fields.Char(compute="_compute_display_name") + + @api.depends("order_id", "partner_id") + def _compute_display_name(self): + for item in self: + item.display_name = "[{}] {}".format( + item.order_id.name, item.partner_id.display_name + ) + + @api.model_create_multi + def create(self, vals_list): + res = super().create(vals_list) + mt_comment = self.env.ref("mail.mt_comment") + for rec in res: + for follower in rec.order_id.message_follower_ids: + rec.message_subscribe( + partner_ids=[follower.partner_id.id], + subtype_ids=follower.subtype_ids.ids, + ) + rec.message_subscribe( + partner_ids=[rec.partner_id.id], subtype_ids=mt_comment.ids, + ) + return res diff --git a/account_payment_order_notification/readme/CONFIGURE.rst b/account_payment_order_notification/readme/CONFIGURE.rst new file mode 100644 index 000000000..b754ede03 --- /dev/null +++ b/account_payment_order_notification/readme/CONFIGURE.rst @@ -0,0 +1,11 @@ +To configure this module, you need to: + +#. Go to *Invoicing > Configuration > Payment Modes* and create a payment mode if you wish. + +#. Go to *Invoicing > Customers > Customers* and creates a new record as follows: + * Name: Test customer 1 + * Email: customer1@test.com + +#. Go to *Invoicing > Customers > Customers* and creates a new record as follows: + * Name: Test customer 2 + * Email: (empty) diff --git a/account_payment_order_notification/readme/CONTRIBUTORS.rst b/account_payment_order_notification/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..5fb713053 --- /dev/null +++ b/account_payment_order_notification/readme/CONTRIBUTORS.rst @@ -0,0 +1,4 @@ +* `Tecnativa `_: + + * Víctor Martínez + * Pedro M. Baeza diff --git a/account_payment_order_notification/readme/DESCRIPTION.rst b/account_payment_order_notification/readme/DESCRIPTION.rst new file mode 100644 index 000000000..88fb038fe --- /dev/null +++ b/account_payment_order_notification/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds a button on debit / payment orders to send an email to each related partner with the details of their transactions. diff --git a/account_payment_order_notification/readme/USAGE.rst b/account_payment_order_notification/readme/USAGE.rst new file mode 100644 index 000000000..011ff6653 --- /dev/null +++ b/account_payment_order_notification/readme/USAGE.rst @@ -0,0 +1,11 @@ +#. Go to *Invoicing > Customers > Invoices* and creates one or more invoices linked to the payment mode. +#. Go to *Invoicing > Customers > Invoices* select the invoices created and execute the action called "Post entries". +#. Go to *Invoicing > Customers > Invoices* select the invoices created and execute the action called "Add to Payment/Debit Order" and creates a payment order. +#. Click on "Confirm Payments" button. +#. Click on "Generate Payment File" button. +#. Click on "File Successfully Uploaded" button. +#. Click on "Send mails" button. +#. Any involved partner with no email will appear with the column "To send" not checked. +#. Click on "Confirm" button. +#. An email will have been sent to the selected partners. +#. A reminder note will have been created. diff --git a/account_payment_order_notification/security/ir.model.access.csv b/account_payment_order_notification/security/ir.model.access.csv new file mode 100644 index 000000000..2e294ba7d --- /dev/null +++ b/account_payment_order_notification/security/ir.model.access.csv @@ -0,0 +1,2 @@ +id,name,model_id:id,group_id:id,perm_read,perm_write,perm_create,perm_unlink +access_account_payment_order_notification,account.payment.order.notification.manager,model_account_payment_order_notification,account_payment_order.group_account_payment,1,1,1,1 diff --git a/account_payment_order_notification/static/description/icon.png b/account_payment_order_notification/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/account_payment_order_notification/static/description/icon.png differ diff --git a/account_payment_order_notification/static/description/index.html b/account_payment_order_notification/static/description/index.html new file mode 100644 index 000000000..91b6788a2 --- /dev/null +++ b/account_payment_order_notification/static/description/index.html @@ -0,0 +1,468 @@ + + + + + + +Account Payment Order Notification + + + +
+

Account Payment Order Notification

+ + +

Beta License: AGPL-3 OCA/bank-payment Translate me on Weblate Try me on Runbot

+

This module adds a button on debit / payment orders to send an email to each related partner with the details of their transactions.

+

Table of contents

+ +
+

Configuration

+

To configure this module, you need to:

+
    +
  1. Go to Invoicing > Configuration > Payment Modes and create a payment mode if you wish.
  2. +
  3. +
    Go to Invoicing > Customers > Customers and creates a new record as follows:
    +
    +
    +
    +
  4. +
  5. +
    Go to Invoicing > Customers > Customers and creates a new record as follows:
    +
      +
    • Name: Test customer 2
    • +
    • Email: (empty)
    • +
    +
    +
    +
  6. +
+
+
+

Usage

+
    +
  1. Go to Invoicing > Customers > Invoices and creates one or more invoices linked to the payment mode.
  2. +
  3. Go to Invoicing > Customers > Invoices select the invoices created and execute the action called “Post entries”.
  4. +
  5. Go to Invoicing > Customers > Invoices select the invoices created and execute the action called “Add to Payment/Debit Order” and creates a payment order.
  6. +
  7. Click on “Confirm Payments” button.
  8. +
  9. Click on “Generate Payment File” button.
  10. +
  11. Click on “File Successfully Uploaded” button.
  12. +
  13. Click on “Send mails” button.
  14. +
  15. Any involved partner with no email will appear with the column “To send” not checked.
  16. +
  17. Click on “Confirm” button.
  18. +
  19. An email will have been sent to the selected partners.
  20. +
  21. A reminder note will have been created.
  22. +
+
+
+

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 smashing it by providing a detailed and welcomed +feedback.

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Tecnativa
  • +
+
+
+

Contributors

+
    +
  • Tecnativa:
      +
    • Víctor Martínez
    • +
    • Pedro M. Baeza
    • +
    +
  • +
+
+
+

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.

+

Current maintainer:

+

victoralmau

+

This module is part of the OCA/bank-payment project on GitHub.

+

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

+
+
+
+ + diff --git a/account_payment_order_notification/tests/__init__.py b/account_payment_order_notification/tests/__init__.py new file mode 100644 index 000000000..5c2fc9ff7 --- /dev/null +++ b/account_payment_order_notification/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import test_account_payment_order_notification diff --git a/account_payment_order_notification/tests/test_account_payment_order_notification.py b/account_payment_order_notification/tests/test_account_payment_order_notification.py new file mode 100644 index 000000000..2f53cc06b --- /dev/null +++ b/account_payment_order_notification/tests/test_account_payment_order_notification.py @@ -0,0 +1,80 @@ +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +from odoo.tests import Form, common + + +class TestAccountPaymentOrderNotification(common.SavepointCase): + @classmethod + def setUpClass(cls): + super().setUpClass() + cls.payment_mode = cls.env.ref("account_payment_mode.payment_mode_inbound_dd1") + cls.partner_a = cls.env["res.partner"].create( + {"name": "Test partner A", "email": "partner-a@test.com"} + ) + cls.partner_b = cls.env["res.partner"].create( + {"name": "Test partner B", "email": "partner-b@test.com"} + ) + cls.partner_c = cls.env["res.partner"].create({"name": "Test partner C"}) + cls.product = cls.env["product.product"].create( + {"name": "Test product", "list_price": 100} + ) + cls.mt_comment = cls.env.ref("mail.mt_comment") + + def _create_invoice(self, partner, invoice_type="out_invoice"): + invoice_form = Form( + self.env["account.move"].with_context(default_type=invoice_type) + ) + invoice_form.partner_id = partner + invoice_form.payment_mode_id = self.payment_mode + with invoice_form.invoice_line_ids.new() as line_form: + line_form.product_id = self.product + return invoice_form.save() + + def _test_notification_from_partner(self, po, partner): + notification = po.notification_ids.filtered(lambda x: x.partner_id == partner) + self.assertIn(partner, notification.mapped("message_follower_ids.partner_id")) + self.assertIn(self.mt_comment, notification.mapped("message_ids.subtype_id")) + + def test_wizard_account_payment_order_notification(self): + self._create_invoice(self.partner_a) + self._create_invoice(self.partner_a) + self._create_invoice(self.partner_b) + self._create_invoice(self.partner_c) + partners = self.partner_a + self.partner_b + self.partner_c + invoices = self.env["account.move"].search([("partner_id", "in", partners.ids)]) + invoices.action_post() + wizard = ( + self.env["account.invoice.payment.line.multi"] + .with_context(active_model=invoices._name, active_ids=invoices.ids) + .create({}) + ) + res = wizard.run() + payment_order = self.env[res["res_model"]].browse(res["res_id"]) + old_messages = payment_order.message_ids + template_xml_id = "%s.%s" % ( + "account_payment_order_notification", + "email_account_payment_order_notification", + ) + wizard = ( + self.env["wizard.account.payment.order.notification"] + .with_context(active_id=payment_order.id) + .create({"mail_template_id": self.env.ref(template_xml_id).id}) + ) + self.assertEqual(len(wizard.line_ids), 3) + line_a = wizard.line_ids.filtered(lambda x: x.partner_id == self.partner_a) + self.assertEqual(line_a.email, self.partner_a.email) + self.assertTrue(line_a.to_send) + line_b = wizard.line_ids.filtered(lambda x: x.partner_id == self.partner_b) + self.assertEqual(line_b.email, self.partner_b.email) + self.assertTrue(line_b.to_send) + line_c = wizard.line_ids.filtered(lambda x: x.partner_id == self.partner_c) + self.assertFalse(line_c.email) + self.assertFalse(line_c.to_send) + wizard.action_process() + self._test_notification_from_partner(payment_order, self.partner_a) + self._test_notification_from_partner(payment_order, self.partner_b) + self.assertNotIn( + self.partner_c, payment_order.mapped("notification_ids.partner_id") + ) + new_messages = payment_order.message_ids - old_messages + self.assertIn(self.env.ref("mail.mt_note"), new_messages.mapped("subtype_id")) diff --git a/account_payment_order_notification/views/account_payment_order_notification_view.xml b/account_payment_order_notification/views/account_payment_order_notification_view.xml new file mode 100644 index 000000000..5475053ac --- /dev/null +++ b/account_payment_order_notification/views/account_payment_order_notification_view.xml @@ -0,0 +1,69 @@ + + + + account.payment.order.notification.form + account.payment.order.notification + +
+ +
+

+ +

+
+ + + + + + + + + + + +
+
+ + +
+
+
+
+ + account.payment.order.notification.tree + account.payment.order.notification + + + + + + + + + + account.payment.order.notification.search + account.payment.order.notification + + + + + + + + + + + + Payment Order Notifications + account.payment.order.notification + tree,form + +
diff --git a/account_payment_order_notification/views/account_payment_order_view.xml b/account_payment_order_notification/views/account_payment_order_view.xml new file mode 100644 index 000000000..6bfcc74ca --- /dev/null +++ b/account_payment_order_notification/views/account_payment_order_view.xml @@ -0,0 +1,36 @@ + + + + account.payment.order.form + account.payment.order + + +
+ +
+ +
+
+
diff --git a/account_payment_order_notification/wizard/__init__.py b/account_payment_order_notification/wizard/__init__.py new file mode 100644 index 000000000..7b6054995 --- /dev/null +++ b/account_payment_order_notification/wizard/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from . import wizard_account_payment_order_notification diff --git a/account_payment_order_notification/wizard/wizard_account_payment_order_notification.py b/account_payment_order_notification/wizard/wizard_account_payment_order_notification.py new file mode 100644 index 000000000..db63157aa --- /dev/null +++ b/account_payment_order_notification/wizard/wizard_account_payment_order_notification.py @@ -0,0 +1,87 @@ +# Copyright 2022 Tecnativa - Víctor Martínez +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class WizardAccountPaymentOrderNotification(models.TransientModel): + _name = "wizard.account.payment.order.notification" + _description = "Wizard Account Payment Order Notification" + + order_id = fields.Many2one( + comodel_name="account.payment.order", required=True, readonly=True, + ) + mail_template_id = fields.Many2one( + comodel_name="mail.template", + domain=[("model_id.model", "=", "account.payment.order.notification")], + required=True, + ) + line_ids = fields.One2many( + comodel_name="wizard.account.payment.order.notification.line", + inverse_name="parent_id", + string="Lines", + ) + + @api.model + def default_get(self, fields): + vals = super().default_get(fields) + po = self.env["account.payment.order"].browse( + [self.env.context.get("active_id")] + ) + if po: + line_ids = [] + for partner in po.payment_line_ids.mapped("partner_id"): + line_ids += [ + ( + 0, + 0, + { + "partner_id": partner.id, + "email": partner.email, + "to_send": True if partner.email else False, + }, + ) + ] + template_xml_id = "%s.%s" % ( + "account_payment_order_notification", + "email_account_payment_order_notification", + ) + vals.update( + { + "order_id": po.id, + "line_ids": line_ids, + "mail_template_id": self.env.ref(template_xml_id).id, + } + ) + return vals + + def action_process(self): + notifications = [] + for item in self.line_ids.filtered("to_send"): + payment_line_ids = self.order_id.payment_line_ids.filtered( + lambda x: x.partner_id == item.partner_id + ) + data = { + "partner_id": item.partner_id.id, + "payment_line_ids": payment_line_ids, + } + notifications.append((0, 0, data)) + self.order_id.notification_ids = notifications + self.order_id._action_send_mail_notifications(self.mail_template_id) + self.order_id._action_create_note_from_notifications() + + +class WizardAccountPaymentOrderNotificationLine(models.TransientModel): + _name = "wizard.account.payment.order.notification.line" + _description = "Wizard Account Payment Order Notification Line" + + parent_id = fields.Many2one( + comodel_name="wizard.account.payment.order.notification", + ondelete="cascade", + index=True, + ) + partner_id = fields.Many2one( + comodel_name="res.partner", required=True, string="Partner", readonly=True + ) + email = fields.Char(string="Email") + to_send = fields.Boolean(string="To send") diff --git a/account_payment_order_notification/wizard/wizard_account_payment_order_notification_views.xml b/account_payment_order_notification/wizard/wizard_account_payment_order_notification_views.xml new file mode 100644 index 000000000..9dda850c1 --- /dev/null +++ b/account_payment_order_notification/wizard/wizard_account_payment_order_notification_views.xml @@ -0,0 +1,47 @@ + + + + wizard.account.payment.order.notification.form + wizard.account.payment.order.notification + +
+ + + + + + + + + + + + + + + +
+
+
+
+
+ + Send notifications + wizard.account.payment.order.notification + form + new + +