Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
74a195c
fix: French translations
frappe-pr-bot Jun 15, 2026
1dbce55
fix: Spanish translations
frappe-pr-bot Jun 15, 2026
aa29073
fix: Arabic translations
frappe-pr-bot Jun 15, 2026
1be0c7e
fix: Czech translations
frappe-pr-bot Jun 15, 2026
04cbe9e
fix: Danish translations
frappe-pr-bot Jun 15, 2026
07f6793
fix: German translations
frappe-pr-bot Jun 15, 2026
1900100
fix: Hungarian translations
frappe-pr-bot Jun 15, 2026
cc2844e
fix: Italian translations
frappe-pr-bot Jun 15, 2026
1b3aca7
fix: Korean translations
frappe-pr-bot Jun 15, 2026
91a72c3
fix: Dutch translations
frappe-pr-bot Jun 15, 2026
0536560
fix: Polish translations
frappe-pr-bot Jun 15, 2026
a11ee48
fix: Portuguese translations
frappe-pr-bot Jun 15, 2026
16f9cae
fix: Russian translations
frappe-pr-bot Jun 15, 2026
9aba438
fix: Slovenian translations
frappe-pr-bot Jun 15, 2026
a61ead6
fix: Serbian (Cyrillic) translations
frappe-pr-bot Jun 15, 2026
b7e6b04
fix: Swedish translations
frappe-pr-bot Jun 15, 2026
391404d
fix: Turkish translations
frappe-pr-bot Jun 15, 2026
fb4c4f5
fix: Chinese Simplified translations
frappe-pr-bot Jun 15, 2026
1fab1b8
fix: Vietnamese translations
frappe-pr-bot Jun 15, 2026
02a10b4
fix: Portuguese, Brazilian translations
frappe-pr-bot Jun 15, 2026
caded48
fix: Indonesian translations
frappe-pr-bot Jun 15, 2026
073cdda
fix: Persian translations
frappe-pr-bot Jun 15, 2026
9f2dc0c
fix: Thai translations
frappe-pr-bot Jun 15, 2026
4a4e1a4
fix: Croatian translations
frappe-pr-bot Jun 15, 2026
fd4270d
fix: Hindi translations
frappe-pr-bot Jun 15, 2026
2aabb5d
fix: Burmese translations
frappe-pr-bot Jun 15, 2026
33f9d32
fix: Bosnian translations
frappe-pr-bot Jun 15, 2026
5347f14
fix: Norwegian Bokmal translations
frappe-pr-bot Jun 15, 2026
ac98b3a
fix: Serbian (Latin) translations
frappe-pr-bot Jun 15, 2026
e76ec19
fix: Esperanto translations
frappe-pr-bot Jun 15, 2026
6719abf
fix: Persian translations
frappe-pr-bot Jun 16, 2026
51dc32e
fix: change company names in test
krishna-254 Jun 17, 2026
dc21077
Merge pull request #4705 from frappe/l10n_develop
asmitahase Jun 18, 2026
1f71568
Merge pull request #4716 from krishna-254/fix/hrms-test-fail
asmitahase Jun 18, 2026
12c7fe2
chore: fix payroll reviewer handle in CODEOWNERS
raghavisruia Jun 17, 2026
ff54be7
fix: add salary slip to eval context
asmitahase Jun 15, 2026
044fb1a
fix: add salary slip dates to eval context
asmitahase Jun 15, 2026
e604cca
Merge pull request #4699 from asmitahase/fix-ssa-eval-dates
asmitahase Jun 18, 2026
4f766ce
Merge pull request #4714 from raghavisruia/fix/codeowners-payroll-rev…
asmitahase Jun 18, 2026
65feed1
fix: avoid company abbreviation collision in attendance test
krishna-254 Jun 18, 2026
ffc2a78
refactor: optimize database query for payroll settings migration
sahil170401 Jun 9, 2026
7c92d13
Merge pull request #4683 from sahil170401/refactor/optimize-database-…
asmitahase Jun 18, 2026
5312ffa
Merge pull request #4718 from krishna-254/fix/test-attendance-company…
asmitahase Jun 18, 2026
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
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# the repo. Unless a later match takes precedence.

hrms/hr/ @ruchamahabal @asmitahase
hrms/payroll/ @ruchamahabal @AyshaHakeem @iamraheelkhan
hrms/payroll/ @ruchamahabal @AyshaHakeem @iamkhanraheel

frontend/ @ruchamahabal @asmitahase
roster/ @ruchamahabal @asmitahase
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,9 +323,9 @@ def test_attendance_with_employee_filter(self):
self.assertEqual(leaves[2], 1)

def test_attendance_with_company_filter(self):
create_company("Test Parent Company", is_group=1)
create_company("Test Child Company", is_group=1, parent_company="Test Parent Company")
create_company("Test Grandchild Company", parent_company="Test Child Company")
create_company("Test Parent Company", is_group=1, abbr="TPC-HR")
create_company("Test Child Company", is_group=1, parent_company="Test Parent Company", abbr="TCC-HR")
create_company("Test Grandchild Company", parent_company="Test Child Company", abbr="TGC-HR")

employee1 = make_employee("test_employee@parent.com", company="Test Parent Company")
employee2 = make_employee("test_employee@child.com", company="Test Child Company")
Expand Down
Loading
Loading