Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions mail_attach_existing_attachment_account/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ 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

The invoice's attachments are offered through the same foldable,
multi-column picker the mail composer uses, so a long-lived invoice does
not bury the wizard's own buttons under a column of checkboxes.

**Table of contents**

.. contents::
Expand Down Expand Up @@ -78,6 +82,10 @@ Contributors
- Ernesto Tejeda
- Carlos Lopez

- `PureKarting <https://www.purekarting.com>`__:

- Cliff Kujala

Maintainers
-----------

Expand Down
2 changes: 1 addition & 1 deletion mail_attach_existing_attachment_account/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "Thore Baden, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/mail",
"category": "Social Network",
"version": "19.0.1.0.0",
"version": "19.0.2.0.0",
"license": "AGPL-3",
"maintainers": ["chienandalu", "rafaelbn"],
"depends": ["account", "mail_attach_existing_attachment"],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
- Víctor Martínez
- Ernesto Tejeda
- Carlos Lopez
- [PureKarting](https://www.purekarting.com):
- Cliff Kujala
4 changes: 4 additions & 0 deletions mail_attach_existing_attachment_account/readme/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
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

The invoice's attachments are offered through the same foldable,
multi-column picker the mail composer uses, so a long-lived invoice does
not bury the wizard's own buttons under a column of checkboxes.
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,9 @@ <h1>Mail Attach Existing Attachment (Account)</h1>
<p>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</p>
<p>The invoice’s attachments are offered through the same foldable,
multi-column picker the mail composer uses, so a long-lived invoice does
not bury the wizard’s own buttons under a column of checkboxes.</p>
<p><strong>Table of contents</strong></p>
<div class="contents local topic" id="contents">
<ul class="simple">
Expand Down Expand Up @@ -427,6 +430,10 @@ <h3><a class="toc-backref" href="#toc-entry-5">Contributors</a></h3>
<li>Carlos Lopez</li>
</ul>
</li>
<li><a class="reference external" href="https://www.purekarting.com">PureKarting</a>:<ul>
<li>Cliff Kujala</li>
</ul>
</li>
</ul>
</div>
<div class="section" id="maintainers">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<xpath expr="//field[@name='mail_attachments_widget']" position="after">
<field
name="object_attachment_ids"
widget="many2many_checkboxes"
widget="attachment_checkbox_grid"
domain="[('res_model', '=', 'account.move'), ('res_id', '=', move_id)]"
invisible="not can_attach_attachment"
context="{'skip_res_field_check': True}"
Expand Down
Loading