Daily updates from Odoo
Thursday, July 20, 2023
4 changes
Enhancements to existing features
Odoo Studio’s report editor has been rebuilt to allow direct visual editing of reports and to keep the selected report in the browser URL. This makes editing more straightforward and lets users reload or share the page without losing the report they were working on, while advanced layout changes can still be handled in the XML editor.
Manufacturing gains a new MES view that makes it easier to process manufacturing orders and work orders, replacing the older tablet work order view. The change also consolidates employee tracking into the main work order app and adds controls for where production can be registered when quality checks require it.
Original PR description
Adds a new view, MES (Manufacturing Execution System), to be able to process Manufacturing Orders and Work Orders easier. MES will replace the WO's tablet view. By default, MES will display the MO,…
Adds a new view, MES (Manufacturing Execution System), to be able to process Manufacturing Orders and Work Orders easier. MES will replace the WO's tablet view. By default, MES will display the MO, but the user can filter the records by Work Center. In that case, it's the WC's WO who will be displayed. Beside the adding of MES, there is some notable changes: == `mrp_workorder` will be automatically installed with `mrp` == == Merge `mrp_workorder_hr` into `mrp_workorder`== In order to track employees' login into MES and to simplify things, we moves all the `mrp_workorder_hr` stuff into `mrp_workorder`. == Remove the WO tablet view == One of the purpose of MES is to replace the WO tablet view. So, all files and tests related to this view have been removed. == Add a new `quality.point.test_type`: `register_production` == In MES, the production can be registered from the MO itself or from any of its WO. But if one of its WO has a `register_production` Quality Check type, the production can be registered only from this WO. task-3231200 Co-authored-by: R1D1CUL0US <clpi@odoo.com> Co-authored-by: svs-odoo <svs@odoo.com>
Subsidiary companies can now read accounting information from their parent company, including accounts, taxes, and fiscal positions. This reduces duplicate setup work and helps keep accounting rules consistent across company groups.
Original PR description
Accounts, taxes and fiscal positions of parent companies can now be read by children companies. [task-3371677](https://www.odoo.com/web#id=3371677&model=project.task)
Appointments is now presented as a dedicated Odoo app with its own menu, icon, onboarding, and service category placement. This makes appointment scheduling easier to find and manage, while adding clearer user permissions for creating, viewing, and managing relevant appointment links and invitations.
Original PR description
*- appointment_(crm,hr,hr_recruitment,sms),website_appointment(_crm),website_enterprise Purpose ======= This commit aims to turn the appointment module into a real app. To increase its visibility and…
*- appointment_(crm,hr,hr_recruitment,sms),website_appointment(_crm),website_enterprise
Purpose
=======
This commit aims to turn the appointment module into a real app. To increase its visibility and usage.
Specifications
==============
1. Menu item for the app with its icon.
2. Added to the service category.
3. Following menus moved from the calendar to this app: - Appointments - Reporting - Configuration: 'Reminders' also exist in calendar.
4. Onboarding panel is scoped to this app only.
5. Renamed the module category from 'Online Appointments' to 'Appointment'
6. Security:The new group 'User' introduced:
```
- create appointments.
- edit only the following kinds of appointments
=> no user set.
=> user itself mentioned in appointments.
=> resources are set.
- share links & invitations of config menu are visible to the 'User'
=> They can only see the ones that are related to them.
=> They cannot edit but they can read and should be able to
delete (old link, ...).
```
Task-3280730