exclude current doc while validating (#13450)
diff --git a/erpnext/hr/doctype/salary_component/salary_component.py b/erpnext/hr/doctype/salary_component/salary_component.py
index 35d274c..9108f31 100644
--- a/erpnext/hr/doctype/salary_component/salary_component.py
+++ b/erpnext/hr/doctype/salary_component/salary_component.py
@@ -17,6 +17,5 @@
self.salary_component.split()]).upper()
self.salary_component_abbr = self.salary_component_abbr.strip()
-
- self.salary_component_abbr = append_number_if_name_exists('Salary Component',
- self.salary_component_abbr, 'salary_component_abbr', separator='_')
\ No newline at end of file
+ self.salary_component_abbr = append_number_if_name_exists('Salary Component', self.salary_component_abbr,
+ 'salary_component_abbr', separator='_', filters={"name": ["!=", self.name]})
\ No newline at end of file