You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
429 B
12 lines
429 B
from odoo import api, models
|
|
|
|
|
|
class IrConfigParameter(models.Model):
|
|
_inherit = 'ir.config_parameter'
|
|
|
|
@api.model
|
|
def get_web_m2x_options(self):
|
|
opts = ['web_m2x_options.create', 'web_m2x_options.create_edit',
|
|
'web_m2x_options.limit', 'web_m2x_options.search_more',
|
|
'web_m2x_options.m2o_dialog']
|
|
return self.sudo().search_read([['key', 'in', opts]], ["key", "value"])
|