[IMP] Groups : Better duplication terminology.

lp bug: https://launchpad.net/bugs/516969 fixed

bzr revid: jvo@tinyerp.com-20100208085212-g4bggomq0nw2ijo9
This commit is contained in:
Jay (Open ERP) 2010-02-08 14:22:12 +05:30
parent 3b392b6b1f
commit 3e298de7b0
1 changed files with 6 additions and 1 deletions

View File

@ -40,7 +40,12 @@ class groups(osv.osv):
_sql_constraints = [
('name_uniq', 'unique (name)', 'The name of the group must be unique !')
]
def copy(self, cr, uid, id, default=None, context={}):
group_name = self.read(cr, uid, [id], ['name'])[0]['name']
default.update({'name': group_name +' (copy)'})
return super(groups, self).copy(cr, uid, id, default, context)
def write(self, cr, uid, ids, vals, context=None):
if 'name' in vals:
if vals['name'].startswith('-'):