Friday, September 20, 2024
10 changes · master
Enhancements to existing features
The employee referral dashboards were updated to use newer, simpler card layouts and standard styling. This makes the referral screens easier to maintain and helps keep the user experience consistent with current Odoo interface standards.
Original PR description
In this commit we have simplified the kanban arch for the hr_referral module dashboard. the goal is to simplify them, make them easier to read and use bootstrap utility classnames. - Previously, we used kanban-box, but now we are using kanban-card instead. - Deprecated oe_kanban_global_click and oe_kanban_global_click_edit. - More use of `<field/>` tags - Removed the oe_kanban_colorpicker class and replaced it with the kanban_color_picker widget. - Changed type='edit' to type='open' to open records. since version 16, records always open in edit mode by default. - kanban_image from rendering context, is deprecated so we use `<field name=... widget=image/>` instead - kanban_color, kanban_getcolor and kanban_getcolorname are deprecated use new attribute highlight_color=color_field_name on root node Task-3992107
This change updates an internal Studio test to match a recent enhancement that lets character fields handle placeholder text. It helps keep automated quality checks aligned with the product behavior, reducing the risk of false test failures during development.
Original PR description
In this commit: https://github.com/odoo/odoo/commit/fca4ad09d929ceee8820fc8b23ab7edd0898639c we added a new props to the char Field. So this test need to be adapted. task: 4191835 Community pr: https://github.com/odoo/odoo/pull/180744
The work center overview no longer sends users to the shopfloor screen. All related links now open the work order list instead, giving users a more consistent path to manage production work orders.
Original PR description
This PR removes the links to the shopfloor from the workcenter overview. Instead, all links now redirect to the WO list view. task 4081617
Appointment bookings now have clear statuses such as request, booked, checked-in, no-show, and cancelled, making it easier for teams like restaurants to track reservations in the Gantt view. Manual confirmation can also be configured more flexibly, while cancelled bookings free the slot and default appointment alarm notifications are no longer enabled automatically.
Original PR description
Purpose ======= Add a status management for gantt view for establisment such as restaurant to have clearer overview on the bookings and their status. Specification ============= Adding multiple…
Purpose ======= Add a status management for gantt view for establisment such as restaurant to have clearer overview on the bookings and their status. Specification ============= Adding multiple appointment status: - request: set when the "manual confirmation" option is checked on the appointment type. Waiting a manual action from the user to confirm the event. This blocks the slot. The "manual confirmation" can now be set for appointment based on users as well. - booked: The slot is blocked and the event is confirmed. This is the default status when the event has an appointment type. - attended (Checked-In): Set manually by the user to confirm the presence of the clients to the event. - no-show: Set manually by the user to say that the event will not happen. This will block the slot. - cancelled: Set manually by the user or automatically set when the event is not active to say that the event has been cancelled. This will free the slot. Co-authored-by: amdi-odoo amdi@odoo.com Co-authored-by: jeh-odoo jeh@odoo.com Task-4028357
The room booking app now uses the shared loading screen styling instead of maintaining its own duplicate styling. This reduces maintenance effort and helps keep the user experience consistent across Odoo, with no expected functional change for users.
Original PR description
- The room app was using his own CSS for the blocked UI. Indeed, it used the service but its CSS was not available. It now is, instead of more CSS code to support. - The web_enterprise app is using a div using the o_blockUI class... but this seems like a mistake, it never had an effect (since at least version 16.0). To investigate later. Related to task-4184418
Several kanban views were simplified so cards are easier to maintain and align with current Odoo interface standards. Users should see the same workflows with more consistent card behavior and presentation across inventory, manufacturing, Studio, and WhatsApp areas.
Original PR description
*stock_barcode_mrp,stock_barcode_picking_batch,test_web_studio In this commit we have simplified the kanban arch for the planning, project_forecast,quality_control,room,sale_subscription and sale_timesheet_enterprise modules.the goal is to simplify them, make them easier to read and use bootstrap utility classnames. - Previously, we used kanban-box, but now we are using kanban-card instead. - Deprecated oe_kanban_global_click and oe_kanban_global_click_edit. - More use of `<field/>` tags - Removed the oe_kanban_colorpicker class and replaced it with the kanban_color_picker widget. - Changed type='edit' to type='open' to open records. since version 16, records always open in edit mode by default. - kanban_image from rendering context, is deprecated so we use `<field name="..." widget="image"/>` instead - kanban_color, kanban_getcolor and kanban_getcolorname are deprecated use new attribute highlight_color="color_field_name" on root node Task-3992107
Odoo Studio now supports “starts with” and “ends with” filter operators in the list/tree view editor. This gives users more flexible ways to define matching rules when configuring views, making it easier to tailor records and searches to business needs.
Original PR description
Task ID 4132459
The Plan Services field now has clearer tooltip text explaining how it affects automatic planning. This helps users understand when services will be automatically planned and reduces confusion during product setup.
Original PR description
This commit simply adds help text to the tooltip of the field 'plan services' (`planning_enabled`). We add the explanation about how the behavior of 'auto plan' is linked to this field. Task: 3940616
French VAT report submissions now let customers provide up to three bank accounts for reimbursement requests. The underlying VAT closing process was also adjusted so the correct closing entry can be retrieved from report options, improving reliability for the filing workflow.
Original PR description
This commit has 2 objectives: 1. Factorize a bit the vat closing entry code to add a hook function that permits to get the closing entry by using the options report. 2. Modifying the wizard to send the VAT report to the administration. Now, customers can add bank accounts (max 3) where he/she wants to be reimbursed. task-3648048
The GST return dashboard layout for India reports has been simplified to use newer interface components and clearer labels. This makes the dashboard easier to maintain and helps users see a more accurate status label for waiting reception.
Original PR description
In this commit, we have simplified the Kanban arch for the l10n_in_reports_gstr module dashboard. the goal is to simplify them, make them easier to read, and use bootstrap utility class names. -…
In this commit, we have simplified the Kanban arch for the l10n_in_reports_gstr module dashboard. the goal is to simplify them, make them easier to read, and use bootstrap utility class names. - Previously, we used kanban-box, but now we are using kanban-card instead. - Deprecated oe_kanban_global_click and oe_kanban_global_click_edit. - More use of <field/> tags - Removed the oe_kanban_colorpicker class and replaced it with the kanban_color_picker widget. - Changed type='edit' to type='open' to open records. since version 16, records always open in edit mode by default. - kanban_image from rendering context, is deprecated so we use <field name=... widget=image/> instead - kanban_color, kanban_getcolor and kanban_getcolorname are deprecated use new attribute highlight_color=color_field_name on root node also, change 'Waiting for Status' to 'Waiting Reception' as it is not available in gstr2b_status https://github.com/odoo/enterprise/blob/8819f2d2145577cac800a2e149b287ae88000336/l10n_in_reports_gstr/views/gst_return_period.xml#L275 Task-3992107