commit | f5b7bd9dcbe389cd66373ff8feabd333196ecba7 | [log] [tgz] |
---|---|---|
author | Kenneth Sequeira <seq.kenneth@gmail.com> | Tue Jun 23 16:55:35 2020 +0530 |
committer | Kenneth Sequeira <seq.kenneth@gmail.com> | Tue Jun 23 16:55:35 2020 +0530 |
tree | d22655dae8b14e1e5991f0e11b898684c48630e0 | |
parent | dee1c92df1c8de0ef5e80de5fad85706a850f584 [diff] |
fix: add error prompt for wrong date range
diff --git a/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py b/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py index bd59be6..1bc4657 100644 --- a/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py +++ b/erpnext/selling/report/item_wise_sales_history/item_wise_sales_history.py
@@ -9,6 +9,9 @@ def execute(filters=None): filters = frappe._dict(filters or {}) + if filters.from_date > filters.to_date: + frappe.throw(_('From Date cannot be greater than To Date')) + columns = get_columns(filters) data = get_data(filters)