Monday, May 11, 2026
5 changes · master
Enhancements to existing features
This update addresses a specific payroll issue related to car BIK (Belgian vehicle identification number) taxes. It introduces a December-specific salary rule to correct overpayments made by employees, ensuring accurate tax calculations. This change improves payroll accuracy and compliance with Belgian regulations.
Original PR description
. Add a salary rule specific in December to make the regularization in case of employee have paid too much for the car bik task-6197625
This update modifies student wage calculations in Belgium to align with CP302 regulations. Specifically, the minimum wage is reduced by percentages based on the student's age (10% at 17, 20% at 16, and 30% at 15), ensuring accurate payroll processing for student employees.
Original PR description
In this commit, we included the CP302 work clothes fees salary and adjusted student wage rate calculation. - if the student age == 17, the min wage is reduced by 10% - if the student age == 16, the min wage is reduced by 20% - if the student age == 15, the min wage is reduced by 30% task-6036647
This update refines the Gantt view's appearance by removing unnecessary formatting. Specifically, it eliminates leading zeros from time displays and removes default ellipsis indicators when text overflows, resulting in a cleaner and more efficient use of screen space.
Original PR description
Two minor changes to save space and clean up the Gantt view: 1. Removed leading zeros from expected hours (e.g., "08h" to "8h") to save space inside the cells. 2. Removed the default "..." when text overflows on Gantt pills. The dots took up too much room on narrow blocks. task-6131562
This update simplifies how the system retrieves weight data from the scale. Previously, the system automatically checked for updates, but now users must manually click the 'get weight' button to fetch the current measurement. This change streamlines the process and improves user experience.
Original PR description
We simplify product get weight logic avoiding to poll new measures from the scale. We now need to click "get weight" in order to fetch the value directly.
This update enhances the grid view by disabling the 'Show weekends' button when the user selects the year scale. This prevents confusion as the grid only displays months at this scale, making the button irrelevant. This change improves the overall usability of the grid view.
Original PR description
In the grid view, when the user chooses the year scale, the view shows only months and not individual days. Since the `Show weekends` button has no effect in this case, it is disabled in this commit. <img width="901" height="273" alt="image" src="https://github.com/user-attachments/assets/2818e4b2-8a4d-4a58-802e-11e197917aa2" /> task-5164096