Friday, December 6, 2024
3 changes · saas-17.4
Resolved issues and error corrections
Employee badge IDs are now limited to standard letters and numbers so they can be printed as barcodes reliably. This prevents accented characters from causing the badge number to appear as plain text instead of a scannable barcode.
Original PR description
**Steps:** - Install the hr module - Open the employee profile ----- **Description of the issue/feature this PR addresses:** In the employee profile, when entering letters with accents (é è à ë ...) in the badge ID, the barcode fails to print correctly, displaying the badge number as plain text instead. ----- **Cause:** The issue is due to barcode scanner limitations. ----- **Fix:** This PR resolves the issue by restricting the badge ID to alphanumeric characters without accents. task-4316576
Fixed a display issue where the currency symbol could overlap or appear inside the amount field during bank reconciliation matching. This makes manual operations easier to read and helps users avoid confusion when reviewing transaction amounts.
Original PR description
CSS problem with currency symbol in the monetary field amount, when being on the reconciliation widget, click on a statement and then try to match an existing entries. When clicking on this line, the currency of the amount in the manual operations page was in the amount. task: 4260301
The document sharing screen no longer shows a link before the share has been saved. This prevents users from copying a link that will not work and guides them to use the save-and-copy action instead.
Original PR description
The issue: In 17.4, the sharing code was refactored by bb435a2 to only create the share record after clicking the save button. However, the user is still able to copy the "non created" url from the url field before clicking save. So if the user copied the url from the url field, and didn't click on save, the url will not be valid as the corresponding record is not yet created. Solution: This PR simply hides the url field, so the only way to copy the url is by clicking on the save button (save & copy url). That aligns with v18. opw-4335725