fix: incoming rate calculation

(cherry picked from commit 8e143d68b4)
This commit is contained in:
Rohit Waghchaure
2026-01-09 17:29:09 +05:30
committed by Mergify
parent ee9debe581
commit 01af6c8762

View File

@@ -715,7 +715,7 @@ class SerialNoValuation(DeprecatedSerialNoValuation):
)
.select(
bundle_child.serial_no,
(bundle_child.incoming_rate * bundle_child.qty).as_("incoming_rate"),
bundle_child.incoming_rate,
)
<<<<<<< HEAD
.orderby(Timestamp(bundle.posting_date, bundle.posting_time), order=Order.desc)