Merge pull request #17592 from scmmishra/acad-fixes
fix: bug fixes in LMS
diff --git a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js
index 29db227..7908c07 100644
--- a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js
+++ b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.js
@@ -8,7 +8,8 @@
fieldname: "territory",
label: __("Territory"),
fieldtype: "Link",
- options: "Territory"
+ options: "Territory",
+ reqd: 1,
},
{
fieldname: "item",
diff --git a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py
index 42761a5..b670e6e 100644
--- a/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py
+++ b/erpnext/accounts/report/inactive_sales_items/inactive_sales_items.py
@@ -96,6 +96,8 @@
"qty": item_obj.qty,
"days_since_last_order": item_obj.days_since_last_order
})
+ else:
+ continue
data.append(row)
diff --git a/erpnext/config/settings.py b/erpnext/config/settings.py
index a97e8ce..323683a 100644
--- a/erpnext/config/settings.py
+++ b/erpnext/config/settings.py
@@ -92,12 +92,6 @@
"items": [
{
"type": "doctype",
- "name": "Feedback Trigger",
- "label": _("Feedback Trigger"),
- "description": _("Automatically triggers the feedback request based on conditions.")
- },
- {
- "type": "doctype",
"name": "Email Digest",
"description": _("Create and manage daily, weekly and monthly email digests.")
},