Friday, May 31, 2024
4 changes · master
Resolved issues and error corrections
Appointment emails now avoid showing a map link when no address is available and hide the resources section when it does not apply. This reduces confusion for customers and keeps booking communications focused on relevant information.
Original PR description
**Before this PR:** While booking an appointment, the outgoing emails contain some irrelevant data in certain conditions: - A 'View Map' hyperlink is displayed after location name even when 'res.partner' has no contact address set. - A 'Resources' title is displayed even when the appointment type is not 'resources'. i.e. There are no resources to display. This PR resolves these issues by tweaking the conditions to display the 'hyperlink' to search location address and the 'resources' section correctly. **After this PR:** - The 'View Map' hyperlink is displayed only when res.partner not only has the location name, but a set location address for the appointment. - The 'Resources' section is displayed only when the appointment type is 'resources'. Task - [3829148](https://www.odoo.com/web#id=3829148&menu_id=4722&cids=2&action=333&active_id=10888&model=project.task&view_type=form)
The close button in the planning slot portal modal now appears in the correct position. This small visual fix makes the dialog easier to use and presents a more polished experience for portal users.
Original PR description
The button is misaligned in the modal of the planning slot's portal view. This PR will realign it correctly. task-3943384
Fixed an issue where the self-order preparation display could appear blank when opened. This helps staff reliably view and manage incoming orders without interruption.
Original PR description
Before this commit: =========== - When we open the preparation display, it becomes blank. After this commit: =========== - The preparation display works fine. task-3958744
Odoo Studio now shows all available fields immediately when creating a related field, instead of initially limiting the list to many-to-one fields. This makes field setup faster and avoids confusion for users configuring customizations.
Original PR description
SPECIFICATION: When a related field is created with Studio, the list only displays the (M2O) fields. If a field is selected, then all fields become available. Observed behavior: the list only displays the M2O fields Expected behavior: All the fields should directly be available while creating related field in studio . Task-3821059