[FIX] I have improve the error message in procurement
authorAlexis de Lattre <>
Wed, 30 May 2012 06:05:48 +0000 (11:35 +0530)
committerRavish Murari (OpenERP) <rmu@tinyerp.com>
Wed, 30 May 2012 06:05:48 +0000 (11:35 +0530)
lp bug: https://launchpad.net/bugs/1005987 fixed

bzr revid: rmu@tinyerp.com-20120530060548-ijkmbmufuchofvax

addons/procurement/procurement.py

index 2263a44..0e6b544 100644 (file)
@@ -325,7 +325,7 @@ class procurement_order(osv.osv):
         for procurement in self.browse(cr, uid, ids, context=context):
             if procurement.product_qty <= 0.00:
                 raise osv.except_osv(_('Data Insufficient !'),
-                    _('Please check the quantity in procurement order(s), it should not be 0 or less!'))
+                    _('Please check the quantity in procurement order(s) for the product "%s", it should not be 0 or less!' % procurement.product_id.name))
             if procurement.product_id.type in ('product', 'consu'):
                 if not procurement.move_id:
                     source = procurement.location_id.id