Skip to content

Commit

Permalink
Merge PR #341 into 15.0
Browse files Browse the repository at this point in the history
Signed-off-by pedrobaeza
  • Loading branch information
OCA-git-bot committed Oct 22, 2024
2 parents 4d6a89c + 232379b commit db3ff71
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ def lines_grouped_by_picking(self):
# To avoid to print duplicate lines because the invoice is a refund
# without returned goods to refund.
remaining_qty = float_round(
remaining_qty, precision_rounding=line.product_id.uom_id.rounding
remaining_qty,
precision_rounding=line.product_id.uom_id.rounding or 0.01,
)
if (
self.move_type == "out_refund"
Expand Down

0 comments on commit db3ff71

Please sign in to comment.