[IMP] product : Improved the warning message.

bzr revid: mdi@tinyerp.com-20120924130043-euwxbfmk5q58vqw4
This commit is contained in:
Divyesh Makwana (Open ERP) 2012-09-24 18:30:43 +05:30
parent 3bcf43b06b
commit fc9b27af79
1 changed files with 2 additions and 2 deletions

View File

@ -440,7 +440,7 @@ class product_pricelist_item(osv.osv):
price_min_margin = vals.get('price_min_margin', 0.0)
price_max_margin = vals.get('price_max_margin', 0.0)
if price_min_margin > price_max_margin:
raise osv.except_osv(_('Warning!'), _('Minimum margin must be lower than maximum margin in \'%s\' pricelist rule !.') % (name))
raise osv.except_osv(_('Warning!'), _('Minimum margin must be lower than maximum margin in \'%s\' pricelist rule!') % (name))
return super(product_pricelist_item, self).create(cr, uid, vals, context=context)
def write(self, cr, uid, ids, vals, context=None):
@ -449,7 +449,7 @@ class product_pricelist_item(osv.osv):
for rule in self.browse(cr, uid, ids, context=context):
name = rule.name
if price_min_margin > price_max_margin:
raise osv.except_osv(_('Warning!'), _('Minimum margin must be lower than maximum margin in \'%s\' pricelist rule !.') % (name))
raise osv.except_osv(_('Warning!'), _('Minimum margin must be lower than maximum margin in \'%s\' pricelist rule!') % (name))
return super(product_pricelist_item, self).write(cr, uid, ids, vals, context=context)