Adjustment to item lot appending.

master
bleeson 2025-03-20 10:52:31 -07:00
parent fa082049df
commit 318cf7790e
1 changed files with 1 additions and 1 deletions

View File

@ -448,7 +448,7 @@ class ReceiptDetailList:
if itmref in self._item_set:
for detail in self._details:
for subdetail in detail.subdetails:
if subdetail.lot == receipt_subdetail.lot:
if detail.itmref == itmref and subdetail.lot == receipt_subdetail.lot:
subdetail.append(receipt_subdetail)
return
if detail.itmref == itmref: