Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions hrms/desktop_icon/people.json → hrms/desktop_icon/setup.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
"icon": "square-user-round",
"icon_type": "Link",
"idx": 0,
"label": "People",
"link_to": "People",
"label": "Setup",
"link_to": "Setup",
"link_type": "Workspace Sidebar",
"logo_url": "/assets/hrms/icons/desktop_icons/people.svg",
"modified": "2026-01-12 15:18:41.611893",
"logo_url": "/assets/hrms/icons/desktop_icons/setup.svg",
"modified": "2026-03-10 12:21:38.405668",
"modified_by": "Administrator",
"name": "People",
"name": "Setup",
"owner": "Administrator",
"parent_icon": "Frappe HR",
"restrict_removal": 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"icon": "hr",
"idx": 1,
"is_hidden": 0,
"label": "People",
"label": "Setup",
"links": [
{
"hidden": 0,
Expand Down Expand Up @@ -384,10 +384,10 @@
"type": "Link"
}
],
"modified": "2026-01-10 15:08:35.595514",
"modified": "2026-03-09 17:00:16.351103",
"modified_by": "Administrator",
"module": "HR",
"name": "People",
"name": "Setup",
"number_cards": [],
"owner": "Administrator",
"parent_page": "",
Expand All @@ -397,6 +397,6 @@
"roles": [],
"sequence_id": 1.0,
"shortcuts": [],
"title": "People",
"title": "Setup",
"type": "Workspace"
}
3 changes: 3 additions & 0 deletions hrms/overrides/dashboard_overrides.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ def get_dashboard_for_employee(data):
"Employee Incentive",
"Retention Bonus",
"Bank Account",
"Overtime Slip",
"Arrear",
"Payroll Correction",
],
},
{
Expand Down
1 change: 1 addition & 0 deletions hrms/patches.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ hrms.patches.v15_0.rename_claim_date_to_payroll_date_in_employee_benefit_claim
hrms.patches.v15_0.add_leave_type_permission_for_ess
hrms.patches.v16_0.create_custom_field_for_employee_advance_in_employee_master
hrms.patches.v16_0.delete_old_workspaces #2026-01-09
hrms.patches.v16_0.rename_people_to_setup
hrms.patches.v16_0.create_holiday_list_assignments
hrms.patches.v16_0.set_base_paid_amount_in_employee_advance
hrms.patches.v16_0.set_currency_and_base_fields_in_expense_claim
9 changes: 9 additions & 0 deletions hrms/patches/v16_0/rename_people_to_setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import frappe


def execute():
for doctype in ("Workspace Sidebar", "Workspace", "Desktop Icon"):
if frappe.db.exists(doctype, "People"):
frappe.delete_doc(doctype, "People", force=True, ignore_permissions=True)

frappe.clear_cache()
1 change: 1 addition & 0 deletions hrms/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,6 +186,7 @@ def get_custom_fields():
"label": _("Employment Type"),
"options": "Employment Type",
"insert_after": "department",
"in_list_view": 1,
},
{
"fieldname": "job_applicant",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"indent": 0,
"keep_closed": 0,
"label": "Home",
"link_to": "People",
"link_to": "Setup",
"link_type": "Workspace",
"show_arrow": 0,
"type": "Link"
Expand Down Expand Up @@ -148,10 +148,11 @@
"url": "/desk/hr-settings#employee_tab"
}
],
"modified": "2026-01-09 17:22:08.890026",
"modified": "2026-03-09 17:19:36.620545",
"modified_by": "Administrator",
"module": "HR",
"name": "People",
"name": "Setup",
"owner": "Administrator",
"title": "People"
"standard": 1,
"title": "Setup"
}
Loading