diff --git a/delivery_roulier/models/stock_picking.py b/delivery_roulier/models/stock_picking.py index de7c472db2..382741c028 100644 --- a/delivery_roulier/models/stock_picking.py +++ b/delivery_roulier/models/stock_picking.py @@ -87,9 +87,6 @@ def _roulier_generate_labels(self): lambda ml: ml.qty_done > 0.0 and not ml.result_package_id ) if move_line_no_pack: - # For automatic package creation, for use cases where we only have one - # pack per picking and we don't want to force the user to use pack - # consider installing delivery_automatic_package OCA module raise UserError( _( "Some products have no destination package in picking %s, " diff --git a/delivery_roulier/readme/CONFIGURE.rst b/delivery_roulier/readme/CONFIGURE.rst new file mode 100644 index 0000000000..e7cf93ad3c --- /dev/null +++ b/delivery_roulier/readme/CONFIGURE.rst @@ -0,0 +1,2 @@ +This module needs package in order to work. +To generate the carrier labels on the picking, each products need to be assigned to a destination package. In case you don't want to bother with the use of package because the whole content of the picking usually fit in a unique package, you may consider installing the module delivery_automatic_package from the same repository (delivery-carrier). The package will be assigned automatically when asking the carrier labels.