Skip to content

Commit

Permalink
[FIX] sale_report_delivered: Consider 0.0 Value valuation layers
Browse files Browse the repository at this point in the history
  • Loading branch information
Shide committed Jun 10, 2024
1 parent ffad5a5 commit 81ac4b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sale_report_delivered/reports/sale_report.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def _sub_select(self):
s.id as order_id,
sp.id as picking_id,
sol.purchase_price AS unsigned_purchase_price,
ROUND(svl.value, cur.decimal_places) AS amount_cost
ROUND(COALESCE(svl.value, 0.0), cur.decimal_places) AS amount_cost
"""
return sub_select_str

Expand Down

0 comments on commit 81ac4b4

Please sign in to comment.