Wednesday, June 10, 2020
4 changes · master
Enhancements to existing features
Event staff can now use a single Registration Desk interface to scan tickets across multiple events happening at the same venue or time. Attendee views were also cleaned up to show only relevant information, making check-in workflows faster and less confusing.
Original PR description
PURPOSE
Introduce a clearer way of handling registrations for single / multiple events
occurring at the same time and place by
* improve attendees kanban view, notably by better supporting mono and multi
event (hide unnecessary information);
* introducing a Registration Desk menu item to manage multi-event mode;
SPECIFICATIONS
Previously to this commit, ticket validation team had to switch event before
launching barcode interface. This process was verious tedious in multi-event
mode.
In this commit we add a Registration Desk menu opening the event barcode
interface in multi event mode. It allows to scan tickets whatever their
event, having therefore one interface for any ongoing events.
Reorganize module according to guidelines while we are at it.
LINKS
Task ID #2214290
Community PR odoo/odoo#47511
Enterprise PR odoo/enterprise#9190Manufacturing planning now stores planned purchase dates without unnecessary time details. This makes date-based searches and matches more reliable when working with the master production schedule.
Original PR description
Since we only care about the date, remove time part of the date_planned_mps, so that when search based on a date we can also march it.
Notifications can now appear without a title, so short messages no longer show an empty header area or unnecessary icon spacing. This makes alerts cleaner and easier to read across affected Odoo apps such as Data Merge, Marketing Automation, Stock Barcode, and Web Enterprise.
Original PR description
PURPOSE Currently, the notification pops up on the right top corner, when you are not passing the title parameter as a option when generating the notification,then it will display the blank div with the default button icon only. so it is not possible to have one-line notifications since the title is mandatory. SPEC So the purpose of the task is to make the title optional, allowing for more minimalistic notification. For that we have put the condition for the title div, if the options have title field then only the top titile div will display otherwise not. Also removed some unnecessary titles from the notification and some styling change. Task : 2264749
Odoo Studio now offers a direct menu option to create a new model, avoiding the previous multi-step path through menu editing. New models are also placed at the end of the selected parent menu and users are taken straight to the new model's form view, making setup faster and smoother.
Original PR description
**PROBLEM** Currently, web studio has an option in menu bar: edit menu. Through which a user can edit menu and create new menu for a new model. Here the problem is, create new model option is not given directly, for that user has to go to edit menu > new menu > new model. It does not make sense whenever user wants to create a new model directly. **SOLUTION** So, for a better user experience, there should be an option at menu bar to create 'new model'. **PURPOSE** By this commit, this option has been added to the menu bar and now on wards user can directly use that option to add new model without following too many steps. **LINK** Task - 2225267