fix: delivery note creation issue (backport #42696) (#42697)

fix: delivery note creation issue (#42696)

(cherry picked from commit b65072cd98)

Co-authored-by: rohitwaghchaure <rohitw1991@gmail.com>
This commit is contained in:
mergify[bot]
2024-08-09 15:24:34 +05:30
committed by GitHub
parent 38d80aab99
commit 6f16ae3e00
2 changed files with 4 additions and 0 deletions

View File

@@ -328,6 +328,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)