From 4707ad20293227c58f994970e1851c2c0a358a76 Mon Sep 17 00:00:00 2001 From: ashish-greycube Date: Fri, 26 Apr 2019 12:12:53 +0530 Subject: [PATCH] fix: copy_payment_schedule_from_quot_to_SO --- erpnext/selling/doctype/quotation/quotation.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/erpnext/selling/doctype/quotation/quotation.py b/erpnext/selling/doctype/quotation/quotation.py index ad151bef00..4e6c8336ea 100644 --- a/erpnext/selling/doctype/quotation/quotation.py +++ b/erpnext/selling/doctype/quotation/quotation.py @@ -171,6 +171,10 @@ def _make_sales_order(source_name, target_doc=None, ignore_permissions=False): "Sales Team": { "doctype": "Sales Team", "add_if_empty": True + }, + "Payment Schedule": { + "doctype": "Payment Schedule", + "add_if_empty": True } }, target_doc, set_missing_values, ignore_permissions=ignore_permissions)