Quantity Relocated moves eliminated
This commit is contained in:
parent
025fad945d
commit
29ec38e992
|
|
@ -133,7 +133,7 @@ class SamashtiDashboard(models.AbstractModel):
|
||||||
category,
|
category,
|
||||||
uom,
|
uom,
|
||||||
current_cost,
|
current_cost,
|
||||||
COALESCE(opening_stock, 0) AS opening_stock,
|
GREATEST(COALESCE(opening_stock, 0), 0) AS opening_stock
|
||||||
COALESCE(receipts, 0) AS receipts,
|
COALESCE(receipts, 0) AS receipts,
|
||||||
COALESCE(production, 0) AS production,
|
COALESCE(production, 0) AS production,
|
||||||
COALESCE(consumption, 0) AS consumption,
|
COALESCE(consumption, 0) AS consumption,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue