fixes
diff --git a/erpnext/setup/install.py b/erpnext/setup/install.py
index 1c64610..2cc280f 100644
--- a/erpnext/setup/install.py
+++ b/erpnext/setup/install.py
@@ -31,6 +31,13 @@
'style': style
}).insert(ignore_permissions=True)
+ for action in ['Approve', 'Reject']:
+ if not frappe.db.exists("Workflow Action", action):
+ frappe.get_doc({
+ 'doctype': 'Workflow Action',
+ 'workflow_action_name': action
+ }).insert(ignore_permissions=True)
+
if not frappe.db.exists("Workflow", "Leave Approval"):
frappe.get_doc({
'doctype': 'Workflow',