Browse Source
[MIG] mail_attach_existing_attachment: Migrated to 10.0
pull/99/head
Damien Bouvy
8 years ago
No known key found for this signature in database
GPG Key ID: 1D0AB759B4B928E3
4 changed files with
20 additions and
22 deletions
-
mail_attach_existing_attachment/README.rst
-
mail_attach_existing_attachment/__manifest__.py
-
mail_attach_existing_attachment/wizard/mail_compose_message.py
-
mail_attach_existing_attachment/wizard/mail_compose_message_view.xml
|
|
@ -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 |
|
|
|
====================== |
|
|
|
|
|
@ -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', |
|
|
@ -40,5 +40,5 @@ |
|
|
|
'data': [ |
|
|
|
'wizard/mail_compose_message_view.xml', |
|
|
|
], |
|
|
|
'installable': False, |
|
|
|
'installable': True, |
|
|
|
} |
|
|
@ -23,7 +23,7 @@ |
|
|
|
# |
|
|
|
############################################################################## |
|
|
|
|
|
|
|
from openerp import models, fields, api |
|
|
|
from odoo import models, fields, api |
|
|
|
|
|
|
|
|
|
|
|
class MailComposeMessage(models.TransientModel): |
|
|
|
|
|
@ -1,6 +1,5 @@ |
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
<openerp> |
|
|
|
<data noupdate="0"> |
|
|
|
<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> |
|
|
@ -15,5 +14,4 @@ |
|
|
|
</xpath> |
|
|
|
</field> |
|
|
|
</record> |
|
|
|
</data> |
|
|
|
</openerp> |
|
|
|
</odoo> |