User Progress (#10336)

* [user-progress] first cut

* [user-progress] Add users slide, remove taxes, make sample data

* wip tests

* [setup-wiz] UI test

* [user-progress] notif test, docs trim

* wip

* [user-progress] Setup Progress single to update action states, fixtures

* setup progress actions patch

* rename sales_target field patch

* [progress] wip reform slide data

* [progress] remove slide data

* [setup] add roles for GST doctypes, remove commit from fixtures
diff --git a/erpnext/tests/test_notifications.py b/erpnext/tests/test_notifications.py
index 752badf..467ddd3 100644
--- a/erpnext/tests/test_notifications.py
+++ b/erpnext/tests/test_notifications.py
@@ -9,31 +9,31 @@
 
 class TestNotifications(unittest.TestCase):
 	def setUp(self):
-		test_records = [
+		test_records_company = [
 			{
-			"abbr": "_TC6",
-			"company_name": "_Test Company 6",
-			"country": "India",
-			"default_currency": "INR",
-			"doctype": "Company",
-			"domain": "Manufacturing",
-			"sales_target": 2000,
-			"chart_of_accounts": "Standard"
+				"abbr": "_TC6",
+				"company_name": "_Test Company 6",
+				"country": "India",
+				"default_currency": "INR",
+				"doctype": "Company",
+				"domain": "Manufacturing",
+				"monthly_sales_target": 2000,
+				"chart_of_accounts": "Standard"
 			},
 			{
-			"abbr": "_TC7",
-			"company_name": "_Test Company 7",
-			"country": "United States",
-			"default_currency": "USD",
-			"doctype": "Company",
-			"domain": "Retail",
-			"sales_target": 10000,
-			"total_monthly_sales": 1000,
-			"chart_of_accounts": "Standard"
+				"abbr": "_TC7",
+				"company_name": "_Test Company 7",
+				"country": "United States",
+				"default_currency": "USD",
+				"doctype": "Company",
+				"domain": "Retail",
+				"monthly_sales_target": 10000,
+				"total_monthly_sales": 1000,
+				"chart_of_accounts": "Standard"
 			},
 		]
 
-		make_test_objects('Company', test_records=test_records, reset=True)
+		make_test_objects('Company', test_records=test_records_company, reset=True)
 
 	def test_get_notifications_for_targets(self):
 		'''