Skip to content
Snippets Groups Projects
Commit d480454e authored by Jitendra Prajapati's avatar Jitendra Prajapati
Browse files

[IMP]ir_config_parameter.py: use _rec_name.

bzr revid: jpr@tinyerp.com-20140506083931-j8352t1rqfhvpgz0
parent d5e9847b
No related branches found
No related tags found
No related merge requests found
......@@ -42,6 +42,7 @@ class ir_config_parameter(osv.osv):
"""Per-database storage of configuration key-value pairs."""
_name = 'ir.config_parameter'
_rec_name = 'key'
_columns = {
'key': fields.char('Key', size=256, required=True, select=1),
......@@ -52,9 +53,6 @@ class ir_config_parameter(osv.osv):
('key_uniq', 'unique (key)', 'Key must be unique.')
]
def name_get(self, cr, uid, ids, context=None):
return [(sys_para.id, "%s" % (sys_para.key)) for sys_para in self.browse(cr, uid, ids, context=context)]
def init(self, cr, force=False):
"""
Initializes the parameters listed in _default_parameters.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment