[IMP] stock: update warning message for serial number

bzr revid: cha@tinyerp.com-20120925062657-bz3ho9tx3oriuamy
This commit is contained in:
Ajay Chauhan (OpenERP) 2012-09-25 11:56:57 +05:30
parent 694743bbf3
commit 5e7deadf24
1 changed files with 1 additions and 1 deletions

View File

@ -1839,7 +1839,7 @@ class stock_move(osv.osv):
if (location.usage == 'internal') and (product_qty > (amount_actual or 0.0)):
warning = {
'title': _('Insufficient Stock for Serial Number !'),
'message': _('You are moving %.2f %s products but only %.2f %s available for this serial number.') % (product_qty, uom.name, amount_actual, uom.name)
'message': _('You are moving %.2f %s but only %.2f %s available for this serial number.') % (product_qty, uom.name, amount_actual, uom.name)
}
return {'warning': warning}