Daily updates from Odoo
Tuesday, August 31, 2021
5 changes
Resolved issues and error corrections
The Planning schedule view has been adjusted so action buttons such as copying the previous week and sending the schedule line up properly. This improves the visual consistency of the planning screen and makes the controls easier to use.
Original PR description
Purpose of the commit is to fix the button's alignment in planning. Adjust the alignment of copy previous week button and send schedule button in planning Gantt view. **TaskID: 2623507**
A redundant dependency field was removed from the Project Enterprise module. This reduces duplicate internal data definitions and helps keep project functionality more reliable and maintainable.
Original PR description
Fixes field redundancy introduced in 6726fc16dbda0c81c48540eeda41cdae0394f28d.
Barcode scans are now handled only when the barcode lines are visible in the app. This prevents accidental processing when users are viewing another screen, reducing errors during warehouse quality control and stock operations.
Moving an unassigned planning shift to another day no longer automatically assigns it to an employee. This keeps open shifts available as intended and prevents accidental staffing changes during scheduling.
Original PR description
[FIX] planning: moving an open shift from one day to another assigns it to an employee
Steps to reproduce the issue:
- Go into planning
- Create a shift without assigning an employee
- The slot appears in the open shift row
- Reschedule the slot to another day by drag and dropping it
- The slot is assigned to an employee
Expected behavior after the fix:
- A slot located in the open shift row should be rescheduled without being assigned to an employee
task-2634032Social Marketing users can now publish posts without encountering an error when clicking the Post button. The fix corrects how post data is handled so the publishing flow works reliably.
Original PR description
PURPOSE Not able to post in social media via social marketing, it throws traceback while click on Post button. SPECIFICATION Traceback while click on Social Marketing > New post > Post traceback should not occur while posting through social marketing. The traceback occured due to the wrong argument type is passed to the function, so the goal of this commit is to pass the proper argument type to the function, this is solved by converting the argument type to string while passing to the function. LINKS PR #20502 Task 2628586