modified patches.txt
diff --git a/erpnext/hr/doctype/leave_application/test_leave_application.js b/erpnext/hr/doctype/leave_application/test_leave_application.js
index 7d5fdf0..45719c7 100644
--- a/erpnext/hr/doctype/leave_application/test_leave_application.js
+++ b/erpnext/hr/doctype/leave_application/test_leave_application.js
@@ -34,7 +34,7 @@
() => frappe.set_route("List", "Leave Application", "List"),
() => frappe.timeout(1),
// // check approved application in list
- () => assert.deepEqual(["Test Employee 1", "Approved"], [cur_list.data[0].employee_name, cur_list.data[0].workflow_state],
+ () => assert.deepEqual(["Test Employee 1", "Approved"], [cur_list.data[0].employee_name, cur_list.data[0].workflow_state]),
// "leave for correct employee is approved"),
() => done()
]);
diff --git a/erpnext/patches.txt b/erpnext/patches.txt
index d99523f..fa73e1c 100644
--- a/erpnext/patches.txt
+++ b/erpnext/patches.txt
@@ -488,3 +488,4 @@
erpnext.patches.v10_0.update_reserved_qty_for_purchase_order
erpnext.patches.v10_0.update_assessment_plan
erpnext.patches.v10_0.update_assessment_result
+erpnext.patches.v10_0.workflow_leave_application
\ No newline at end of file
diff --git a/erpnext/patches/v10_0/workflow_leave_application.py b/erpnext/patches/v10_0/workflow_leave_application.py
index ca31128..4128631 100644
--- a/erpnext/patches/v10_0/workflow_leave_application.py
+++ b/erpnext/patches/v10_0/workflow_leave_application.py
@@ -48,4 +48,4 @@
}).insert(ignore_permissions=True)
frappe.db.sql("""update `tabLeave Application` set workflow_state = status""")
- frappe.db.sql("""alter table `tabLeave Application` drop column status""")
+ # frappe.db.sql("""alter table `tabLeave Application` drop column status""")
diff --git a/erpnext/public/css/pos.css b/erpnext/public/css/pos.css
index e2d301d..bc81182 100644
--- a/erpnext/public/css/pos.css
+++ b/erpnext/public/css/pos.css
@@ -169,8 +169,5 @@
height: 60px;
}
.grand-total .grand-total-value {
- font-size: 18px;
-}
-.rounded-total-value {
- font-size: 18px;
+ font-size: 24px;
}