[IMP] Remove supply move created message

bzr revid: jco@openerp.com-20140422125945-ff769vzlw1hmh6au
This commit is contained in:
Josse Colpaert 2014-04-22 14:59:45 +02:00
parent f119c72f5b
commit ea456d4458
1 changed files with 0 additions and 1 deletions

View File

@ -221,7 +221,6 @@ class procurement_order(osv.osv):
move_dict = self._run_move_create(cr, uid, procurement, context=context)
#create the move as SUPERUSER because the current user may not have the rights to do it (mto product launched by a sale for example)
move_obj.create(cr, SUPERUSER_ID, move_dict, context=context)
self.message_post(cr, uid, [procurement.id], body=_("Supply Move created"), context=context)
return True
return super(procurement_order, self)._run(cr, uid, procurement, context=context)