Module in tree view by default, filtered on Installed modules (not Apps)

This commit is contained in:
Alexis de Lattre
2015-12-07 10:04:16 +01:00
parent 725314e497
commit 8d64f799d1
2 changed files with 22 additions and 0 deletions

View File

@@ -36,12 +36,17 @@ This module adds *track_visibility='onchange'* on all the important fields of th
By default, Odoo doesn't display the title field on all the partner form views. This module fixes it (it replaces the module base_title_on_partner). By default, Odoo doesn't display the title field on all the partner form views. This module fixes it (it replaces the module base_title_on_partner).
By default, users in the Partner Contact group also have create/write access on Countries and States. This module removes that: only the users in the *Administration > Configuration* group have create/write/delete access on those objects. By default, users in the Partner Contact group also have create/write access on Countries and States. This module removes that: only the users in the *Administration > Configuration* group have create/write/delete access on those objects.
It also adds a log message at INFO level when sending an email via SMTP.
It displays the Local modules by default in tree view (instead of Kanban) filtered on installed modules (instead of filtered on Apps).
""", """,
'author': 'Akretion', 'author': 'Akretion',
'website': 'http://www.akretion.com', 'website': 'http://www.akretion.com',
'depends': ['base', 'mail'], 'depends': ['base', 'mail'],
'data': [ 'data': [
'partner_view.xml', 'partner_view.xml',
'module_view.xml',
'security/ir.model.access.csv', 'security/ir.model.access.csv',
], ],
'installable': True, 'installable': True,

View File

@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) 2015 Akretion (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>
The licence is in the file __openerp__.py
-->
<openerp>
<data>
<record id="base.open_module_tree" model="ir.actions.act_window">
<field name="context">{'search_default_installed': 1}</field>
<field name="view_mode">tree,form,kanban</field>
</record>
</data>
</openerp>