Wednesday, August 7, 2024
2 changes
Resolved issues and error corrections
Fixed a bug that prevented users with Hebrew language settings from opening documents in the Documents app. The issue was caused by automatic translation of a technical field name, which has been corrected by disabling translation for that specific field.
Original PR description
Current behaviour: --- When settings the user's language as hebrew, the user cannot open any documents Steps to reproduce: --- 1. My profile > Language > Hebrew 2. Go to Documents 3. Open any documents 4. Traceback Cause of the issue: --- file_extension would be literally translated Fix: --- Setting t-translation as off opw-3938083
This fix corrects a configuration mismatch in the Australian payroll module that was causing installation failures. The module was using inconsistent terminology ("yearly" vs "anually") when defining pay period settings, which prevented the system from properly recognizing annual wage entries. This fix ensures the payroll module works correctly with annual salary configurations.
Original PR description
PERIODS_PER_YEAR is using "yearly" but hr_contract uses "anually" and since this model uses the hr_contract, we need to keep the same dictionary keys. In customer database the installation of the module is failing because cannot find key "anually". The issue would also happen if you just set a yearly wage opw-4083058