Creating a Window Action in Odoo 18 involves defining an action that opens a view (like a list, form, kanban, etc.) for a particular model. Window actions are usually defined in XML and can also be created manually through the UI or programmatically using Python if needed. Here’s how you can create one via XML, […]
Window actions (ir.actions.act_window) are the most common action types. It is used to present the visualization of the data models through different types of views. It gives instructions to the GUI client and is usually used by menu items or buttons in views. white_check_markeyesraised_hands Its fields are: res_model model to present views for views a […]