MIG eradicate_quick_create to v14
This commit is contained in:
@@ -1,9 +1,9 @@
|
|||||||
# Copyright 2014-2019 Akretion France (http://www.akretion.com)
|
# Copyright 2014-2021 Akretion France (http://www.akretion.com)
|
||||||
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Eradicate Quick Create',
|
'name': 'Eradicate Quick Create',
|
||||||
'version': '12.0.2.0.0',
|
'version': '14.0.1.0.0',
|
||||||
'category': 'Tools',
|
'category': 'Tools',
|
||||||
'license': 'AGPL-3',
|
'license': 'AGPL-3',
|
||||||
'summary': 'Disable quick create on all objects',
|
'summary': 'Disable quick create on all objects',
|
||||||
@@ -13,7 +13,7 @@ Eradicate Quick Create
|
|||||||
|
|
||||||
Disable quick create on all objects of Odoo.
|
Disable quick create on all objects of Odoo.
|
||||||
|
|
||||||
This new version of the module uses the module *web_m2x_options* from the OCA *web* project instead of the module *base_optional_quick_create* from the OCA project *server-ux*.
|
This module uses the module *web_m2x_options* from the OCA *web* project (in v10 and lower, it was using the module *base_optional_quick_create* from the OCA project *server-ux*).
|
||||||
|
|
||||||
This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
|
This module has been written by Alexis de Lattre from Akretion <alexis.delattre@akretion.com>.
|
||||||
""",
|
""",
|
||||||
@@ -21,5 +21,5 @@ This module has been written by Alexis de Lattre from Akretion <alexis.delattre@
|
|||||||
'website': 'http://www.akretion.com',
|
'website': 'http://www.akretion.com',
|
||||||
'depends': ['web_m2x_options'],
|
'depends': ['web_m2x_options'],
|
||||||
'post_init_hook': 'web_m2x_options_create',
|
'post_init_hook': 'web_m2x_options_create',
|
||||||
'installable': False,
|
'installable': True,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# Copyright 2019 Akretion France
|
# Copyright 2019-2021 Akretion France
|
||||||
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
||||||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||||||
|
|
||||||
@@ -11,7 +11,7 @@ def web_m2x_options_create(cr, registry):
|
|||||||
config_parameter = env['ir.config_parameter'].search(
|
config_parameter = env['ir.config_parameter'].search(
|
||||||
[('key', '=', 'web_m2x_options.create')])
|
[('key', '=', 'web_m2x_options.create')])
|
||||||
if config_parameter and config_parameter.value != 'False':
|
if config_parameter and config_parameter.value != 'False':
|
||||||
config_parameter.value = 'False'
|
config_parameter.write({'value': 'False'})
|
||||||
else:
|
else:
|
||||||
env['ir.config_parameter'].create({
|
env['ir.config_parameter'].create({
|
||||||
'key': 'web_m2x_options.create',
|
'key': 'web_m2x_options.create',
|
||||||
|
|||||||
Reference in New Issue
Block a user