Skip to content

Commit

Permalink
fix: do not auto-populate item delivery date
Browse files Browse the repository at this point in the history
(cherry picked from commit 49cb11c)
  • Loading branch information
GursheenK authored and mergify[bot] committed Jan 29, 2024
1 parent 2389b41 commit 1e341f0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion erpnext/selling/doctype/quotation/quotation.py
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,6 @@ def update_item(obj, target, source_parent):
balance_qty = obj.qty - ordered_items.get(obj.item_code, 0.0)
target.qty = balance_qty if balance_qty > 0 else 0
target.stock_qty = flt(target.qty) * flt(obj.conversion_factor)
target.delivery_date = nowdate()

if obj.against_blanket_order:
target.against_blanket_order = obj.against_blanket_order
Expand Down

0 comments on commit 1e341f0

Please sign in to comment.