Merge pull request #144 from akretion/14.0-fix-message-post-picking
[FIX] picking.message_post() needs explicit 'body' argument
This commit is contained in:
@@ -37,7 +37,7 @@ class StockMove(models.Model):
|
|||||||
picking = move.picking_id
|
picking = move.picking_id
|
||||||
if picking:
|
if picking:
|
||||||
product = move.product_id
|
product = move.product_id
|
||||||
picking.message_post(_(
|
picking.message_post(body=_(
|
||||||
"Product <a href=# data-oe-model=product.product "
|
"Product <a href=# data-oe-model=product.product "
|
||||||
"data-oe-id=%d>%s</a> qty %s %s <b>unreserved</b>")
|
"data-oe-id=%d>%s</a> qty %s %s <b>unreserved</b>")
|
||||||
% (product.id, product.display_name,
|
% (product.id, product.display_name,
|
||||||
@@ -60,7 +60,7 @@ class StockMoveLine(models.Model):
|
|||||||
picking = moveline.move_id.picking_id
|
picking = moveline.move_id.picking_id
|
||||||
if picking:
|
if picking:
|
||||||
product = moveline.product_id
|
product = moveline.product_id
|
||||||
picking.message_post(_(
|
picking.message_post(body=_(
|
||||||
"Product <a href=# data-oe-model=product.product "
|
"Product <a href=# data-oe-model=product.product "
|
||||||
"data-oe-id=%d>%s</a> qty %s %s <b>unreserved</b>")
|
"data-oe-id=%d>%s</a> qty %s %s <b>unreserved</b>")
|
||||||
% (product.id, product.display_name,
|
% (product.id, product.display_name,
|
||||||
|
|||||||
Reference in New Issue
Block a user