Adjustment to item lot appending.
parent
fa082049df
commit
318cf7790e
|
@ -448,7 +448,7 @@ class ReceiptDetailList:
|
||||||
if itmref in self._item_set:
|
if itmref in self._item_set:
|
||||||
for detail in self._details:
|
for detail in self._details:
|
||||||
for subdetail in detail.subdetails:
|
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)
|
subdetail.append(receipt_subdetail)
|
||||||
return
|
return
|
||||||
if detail.itmref == itmref:
|
if detail.itmref == itmref:
|
||||||
|
|
Loading…
Reference in New Issue