Skip to content

Commit

Permalink
[MIG] mail_attach_existing_attachment: Migrated to 10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bouvyd committed Oct 11, 2016
1 parent 968bd8f commit 4cd4d8b
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 22 deletions.
2 changes: 1 addition & 1 deletion mail_attach_existing_attachment/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To configure this module, you need to:

.. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
:alt: Try me on Runbot
:target: https://runbot.odoo-community.org/runbot/205/9.0
:target: https://runbot.odoo-community.org/runbot/205/10.0

Known issues / Roadmap
======================
Expand Down
4 changes: 2 additions & 2 deletions mail_attach_existing_attachment/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"Odoo Community Association (OCA)",
'website': "http://acsone.eu",
'category': 'Social Network',
'version': '9.0.1.0.0',
'version': '10.0.1.0.0',
'license': 'AGPL-3',
'depends': [
'mail',
Expand All @@ -40,5 +40,5 @@
'data': [
'wizard/mail_compose_message_view.xml',
],
'installable': False,
'installable': True,
}
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#
##############################################################################

from openerp import models, fields, api
from odoo import models, fields, api


class MailComposeMessage(models.TransientModel):
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data noupdate="0">
<record model="ir.ui.view" id="email_compose_message_wizard_inherit_form">
<field name="name">mail.compose.message.form (mail_attach_existing_attachment)</field>
<field name="model">mail.compose.message</field>
<field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='attachment_ids']" position="after">
<field name="can_attach_attachment" invisible="1"/>
<div attrs="{'invisible': [('can_attach_attachment', '=', False)]}">
<br />
<field name="object_attachment_ids" widget="many2many_checkboxes" domain="[('res_model', '=', model), ('res_id', '=', res_id)]" />
</div>
</xpath>
</field>
</record>
</data>
</openerp>
<odoo>
<record model="ir.ui.view" id="email_compose_message_wizard_inherit_form">
<field name="name">mail.compose.message.form (mail_attach_existing_attachment)</field>
<field name="model">mail.compose.message</field>
<field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='attachment_ids']" position="after">
<field name="can_attach_attachment" invisible="1"/>
<div attrs="{'invisible': [('can_attach_attachment', '=', False)]}">
<br />
<field name="object_attachment_ids" widget="many2many_checkboxes" domain="[('res_model', '=', model), ('res_id', '=', res_id)]" />
</div>
</xpath>
</field>
</record>
</odoo>

0 comments on commit 4cd4d8b

Please sign in to comment.