Browse Source

Fix Travis (#616)

* [FIX] auth_from_http_remote_user - Lint

* [FIX] server_environment - Lint

* [FIX] base_module_doc_rst - Lint

* [FIX] fetchmail_notify_error_to_sender - Fix XML view, it was the 'active' field from 'fetchmail_attach_from_folder' module which was targeted by mistake (belonging to another data model)
pull/1485/head
Sébastien Alix 8 years ago
committed by mreficent
parent
commit
719285eb36
  1. 2
      fetchmail_notify_error_to_sender/__openerp__.py
  2. 6
      fetchmail_notify_error_to_sender/fetchmail_view.xml

2
fetchmail_notify_error_to_sender/__openerp__.py

@ -21,7 +21,7 @@
{
'name': 'Send notice on fetchmail errors',
'summary': 'If fetching mails gives error, send an email to sender',
'version': '8.0.1.0.0',
'version': '8.0.1.0.1',
'category': 'Tools',
'author': "Agile Business Group,Odoo Community Association (OCA)",
'website': 'http://www.agilebg.com',

6
fetchmail_notify_error_to_sender/fetchmail_view.xml

@ -7,9 +7,9 @@
<field name="model">fetchmail.server</field>
<field name="inherit_id" ref="fetchmail.view_email_server_form"></field>
<field name="arch" type="xml">
<field name="active" position="after">
<field name="error_notice_template_id"></field>
</field>
<xpath expr="//page[@string='Advanced']/group/field[@name='active']" position="after">
<field name="error_notice_template_id"/>
</xpath>
</field>
</record>
</data>

Loading…
Cancel
Save