diff --git a/addons/stock/i18n/stock.pot b/addons/stock/i18n/stock.pot index afca8e8a35923b8e0385bacb7d5b58f070d05183..2ce902f24d964535940d68ee35f00d080947d4c0 100644 --- a/addons/stock/i18n/stock.pot +++ b/addons/stock/i18n/stock.pot @@ -4039,6 +4039,12 @@ msgstr "" msgid "Planned Transfer" msgstr "" +#. module: stock +#: code:addons/stock/models/stock_picking.py:0 +#, python-format +msgid "Please add 'Done' qantitites to the picking to create a new pack." +msgstr "" + #. module: stock #: code:addons/stock/models/stock_picking.py:0 #, python-format diff --git a/addons/stock/models/stock_picking.py b/addons/stock/models/stock_picking.py index e63557a2dbc0890950b694cb18fd682ffeba8ace..3aba18b944b8637f855b9d6f8de1f025e9916164 100644 --- a/addons/stock/models/stock_picking.py +++ b/addons/stock/models/stock_picking.py @@ -1201,7 +1201,7 @@ class Picking(models.Model): res = self._put_in_pack(move_line_ids) return res else: - raise UserError(_('All the products currently reserved in the picking are already in a pack. Please add products to the picking to create a new pack.')) + raise UserError(_("Please add 'Done' qantitites to the picking to create a new pack.")) def button_scrap(self): self.ensure_one()