fixed a locking bug preventing work order quantities from updating when cassette quantities are modified
This commit is contained in:
committed by
Stieber Daniel (CSC FI SPS MESLEO)
parent
7f309c87d4
commit
bad03f6abe
@ -934,7 +934,7 @@ Service UpdateReleasedQty(WONo)
|
||||
UnRelQty = WOQty - RelQty
|
||||
end
|
||||
WORec<WO_LOG_UNREL_QTY_STATIC$> = UnRelQty
|
||||
Database_Services('WriteDataRow', 'WO_LOG', WONo, WORec)
|
||||
Database_Services('WriteDataRow', 'WO_LOG', WONo, WORec, True$, False$, False$)
|
||||
end
|
||||
|
||||
end service
|
||||
@ -946,7 +946,7 @@ Service UpdateReceivedQty(WONo)
|
||||
If Error_Services('NoError') then
|
||||
RXQty = obj_WO_Log('RxQty', WONo:@RM:WORec)
|
||||
WORec<WO_LOG_RX_QTY_STATIC$> = RXQty
|
||||
Database_Services('WriteDataRow', 'WO_LOG', WONo, WORec)
|
||||
Database_Services('WriteDataRow', 'WO_LOG', WONo, WORec, True$, False$, False$)
|
||||
end
|
||||
|
||||
end service
|
||||
|
Reference in New Issue
Block a user