discount percentage should not be reset to zero on applying price list
diff --git a/erpnext/stock/get_item_details.py b/erpnext/stock/get_item_details.py
index c45439a..a57dd59 100644
--- a/erpnext/stock/get_item_details.py
+++ b/erpnext/stock/get_item_details.py
@@ -401,7 +401,6 @@
item_details = frappe._dict()
item_doc = frappe.get_doc("Item", args.item_code)
get_price_list_rate(args, item_doc, item_details)
- item_details.discount_percentage = 0.0
item_details.update(get_pricing_rule_for_item(args))
return item_details