fix: delivery note creation issue (#42696)

This commit is contained in:
rohitwaghchaure
2024-08-09 12:45:53 +05:30
committed by GitHub
parent 2312757a1d
commit b65072cd98
2 changed files with 4 additions and 0 deletions

View File

@@ -329,6 +329,9 @@ class DeliveryNote(SellingController):
return
for item in self.items:
if item.use_serial_batch_fields:
continue
if item.pick_list_item and not item.serial_and_batch_bundle:
filters = {
"item_code": item.item_code,

View File

@@ -1179,6 +1179,7 @@ def map_pl_locations(pick_list, item_mapper, delivery_note, sales_order=None):
dn_item.qty = flt(location.picked_qty) / (flt(location.conversion_factor) or 1)
dn_item.batch_no = location.batch_no
dn_item.serial_no = location.serial_no
dn_item.use_serial_batch_fields = location.use_serial_batch_fields
update_delivery_note_item(source_doc, dn_item, delivery_note)