From b47e224a1cc0bd8d9c985284150ef66eebe1b35a Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 4 Apr 2024 15:25:46 +0530 Subject: [PATCH 1/2] fix: Don't set delivery date as today while making SO from Quotation (cherry picked from commit fec20decc109ff1965fa2afe592f57113482cd73) --- erpnext/selling/doctype/quotation/quotation.py | 1 - 1 file changed, 1 deletion(-) diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index 70d0c1a25fe..bd23440aaf0 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -302,7 +302,6 @@ def _make_sales_order(source_name, target_doc=None, ignore_permissions=False): ) target.flags.ignore_permissions = ignore_permissions - target.delivery_date = nowdate() target.run_method("set_missing_values") target.run_method("calculate_taxes_and_totals") From 79e23dad2c61aafb0145048a49a2d79abf811cb0 Mon Sep 17 00:00:00 2001 From: Nabin Hait Date: Thu, 11 Apr 2024 11:01:28 +0530 Subject: [PATCH 2/2] fix: test cases (cherry picked from commit 65c74fa3c7197f0e751ba62abe1f63c8e7735147) --- erpnext/selling/doctype/quotation/test_quotation.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/erpnext/selling/doctype/quotation/test_quotation.py b/erpnext/selling/doctype/quotation/test_quotation.py index e840ac20268..4219d0698ca 100644 --- a/erpnext/selling/doctype/quotation/test_quotation.py +++ b/erpnext/selling/doctype/quotation/test_quotation.py @@ -122,6 +122,7 @@ class TestQuotation(FrappeTestCase): sales_order.naming_series = "_T-Quotation-" sales_order.transaction_date = nowdate() + sales_order.delivery_date = nowdate() sales_order.insert() def test_make_sales_order_with_terms(self): @@ -152,6 +153,7 @@ class TestQuotation(FrappeTestCase): sales_order.naming_series = "_T-Quotation-" sales_order.transaction_date = nowdate() + sales_order.delivery_date = nowdate() sales_order.insert() # Remove any unknown taxes if applied