Skip to content

Commit aa1d770

Browse files
committed
[FIX]stock_ux: call super() in _check_quantity in stock.move
closes #855 X-original-commit: 05d91eb Signed-off-by: Filoquin adhoc <maq@adhoc.com.ar> Signed-off-by: Juan Carreras <jc@adhoc.com.ar>
1 parent eec0ecc commit aa1d770

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

stock_ux/models/stock_move.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def _compute_origin_description(self):
5555
def _check_quantity(self):
5656
precision = self.env["decimal.precision"].precision_get("Product Unit of Measure")
5757
if any(self.filtered(lambda x: x.location_dest_usage == "inventory")):
58-
return
58+
return super()._check_quantity()
5959
elif any(
6060
self.filtered(
6161
lambda x: x.picking_id.picking_type_id.block_additional_quantity

0 commit comments

Comments
 (0)