From 79d49adab692578d7aacfe7644015b4cf6f5a3af Mon Sep 17 00:00:00 2001 From: tbaden Date: Wed, 24 Apr 2019 18:20:03 +0200 Subject: [PATCH] [12.0][ADD]mail_attach_existing_attachment_account --- .../README.rst | 74 +++ .../__init__.py | 2 + .../__manifest__.py | 22 + .../readme/CONTRIBUTORS.rst | 1 + .../readme/DESCRIPTION.rst | 2 + .../static/description/index.html | 420 ++++++++++++++++++ .../wizard/account_invoice_send_view.xml | 23 + 7 files changed, 544 insertions(+) create mode 100644 mail_attach_existing_attachment_account/README.rst create mode 100644 mail_attach_existing_attachment_account/__init__.py create mode 100644 mail_attach_existing_attachment_account/__manifest__.py create mode 100644 mail_attach_existing_attachment_account/readme/CONTRIBUTORS.rst create mode 100644 mail_attach_existing_attachment_account/readme/DESCRIPTION.rst create mode 100644 mail_attach_existing_attachment_account/static/description/index.html create mode 100644 mail_attach_existing_attachment_account/wizard/account_invoice_send_view.xml diff --git a/mail_attach_existing_attachment_account/README.rst b/mail_attach_existing_attachment_account/README.rst new file mode 100644 index 00000000..fb2d5a3c --- /dev/null +++ b/mail_attach_existing_attachment_account/README.rst @@ -0,0 +1,74 @@ +=============================== +Mail Attach Existing Attachment +=============================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! 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%2Fsocial-lightgray.png?logo=github + :target: https://github.com/OCA/social/tree/12.0/mail_attach_existing_attachment_account + :alt: OCA/social +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/social-12-0/social-12-0-mail_attach_existing_attachment_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/205/12.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This Module adds the mail_attach_existing_attachment feature to the account module, +since there is a change in odoo 12.0, which adds a new mail wizard form to the account module + +**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 smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Thore Baden + +Contributors +~~~~~~~~~~~~ + +* Thore Baden + +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/social `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/mail_attach_existing_attachment_account/__init__.py b/mail_attach_existing_attachment_account/__init__.py new file mode 100644 index 00000000..1d618c04 --- /dev/null +++ b/mail_attach_existing_attachment_account/__init__.py @@ -0,0 +1,2 @@ +# Copyright 2019 Thore Baden +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). diff --git a/mail_attach_existing_attachment_account/__manifest__.py b/mail_attach_existing_attachment_account/__manifest__.py new file mode 100644 index 00000000..2fa53da7 --- /dev/null +++ b/mail_attach_existing_attachment_account/__manifest__.py @@ -0,0 +1,22 @@ +# Copyright 2019 Thore Baden +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). + +{ + 'name': "Mail Attach Existing Attachment (Account)", + 'summary': "Module to use attach existing attachment for account module", + 'author': "Thore Baden, " + "Odoo Community Association (OCA)", + 'website': "https://github.com/OCA/social", + 'category': 'Social Network', + 'version': '12.0.1.0.0', + 'license': 'AGPL-3', + 'depends': [ + 'account', + 'mail_attach_existing_attachment', + ], + 'data': [ + 'wizard/account_invoice_send_view.xml', + ], + 'installable': True, + 'auto_install': True, +} diff --git a/mail_attach_existing_attachment_account/readme/CONTRIBUTORS.rst b/mail_attach_existing_attachment_account/readme/CONTRIBUTORS.rst new file mode 100644 index 00000000..d68ba508 --- /dev/null +++ b/mail_attach_existing_attachment_account/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Thore Baden diff --git a/mail_attach_existing_attachment_account/readme/DESCRIPTION.rst b/mail_attach_existing_attachment_account/readme/DESCRIPTION.rst new file mode 100644 index 00000000..03b832e4 --- /dev/null +++ b/mail_attach_existing_attachment_account/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This Module adds the mail_attach_existing_attachment feature to the account module, +since there is a change in odoo 12.0, which adds a new mail wizard form to the account module diff --git a/mail_attach_existing_attachment_account/static/description/index.html b/mail_attach_existing_attachment_account/static/description/index.html new file mode 100644 index 00000000..84411e77 --- /dev/null +++ b/mail_attach_existing_attachment_account/static/description/index.html @@ -0,0 +1,420 @@ + + + + + + +Mail Attach Existing Attachment + + + +
+

Mail Attach Existing Attachment

+ + +

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

+

This Module adds the mail_attach_existing_attachment feature to the account module, +since there is a change in odoo 12.0, which adds a new mail wizard form to the account module

+

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

+

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

+
+
+

Credits

+
+

Authors

+
    +
  • Thore Baden
  • +
+
+
+

Contributors

+ +
+
+

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

+

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

+
+
+
+ + diff --git a/mail_attach_existing_attachment_account/wizard/account_invoice_send_view.xml b/mail_attach_existing_attachment_account/wizard/account_invoice_send_view.xml new file mode 100644 index 00000000..55659536 --- /dev/null +++ b/mail_attach_existing_attachment_account/wizard/account_invoice_send_view.xml @@ -0,0 +1,23 @@ + + + + + Send Invoice + account.invoice.send + + + + + + +
+
+ +
+
+
+
+