fix: incorrect total qty in job card
(cherry picked from commit c3546cf8e2)
This commit is contained in:
committed by
Mergify
parent
208a46fbe4
commit
fb252ec29a
@@ -375,7 +375,7 @@ class JobCard(Document):
|
|||||||
{
|
{
|
||||||
"to_time": get_datetime(args.get("complete_time")),
|
"to_time": get_datetime(args.get("complete_time")),
|
||||||
"operation": args.get("sub_operation"),
|
"operation": args.get("sub_operation"),
|
||||||
"completed_qty": args.get("completed_qty") or 0.0,
|
"completed_qty": (args.get("completed_qty") if last_row.idx == row.idx else 0.0),
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
elif args.get("start_time"):
|
elif args.get("start_time"):
|
||||||
|
|||||||
Reference in New Issue
Block a user