$ 49.28
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 272 |
| Technical Name |
aos_o2m_preview |
| License | OPL-1 |
| Website | https://www.alphasoft.co.id/ |
| Availability |
Odoo Online
Odoo.sh
On Premise
|
| Lines of code | 272 |
| Technical Name |
aos_o2m_preview |
| License | OPL-1 |
| Website | https://www.alphasoft.co.id/ |
See the inner records without leaving the list.
A drop-in OWL field widget that turns any One2many / Many2many on a list view into a compact "N items" badge — with a tabular preview that pops up on mouse hover. No drill-down click, no dialog, no extra RPC. Your buyer / AR / CS team keeps scanning the list, and gets the detail one hover away.
Sales Orders list. Hover the 12 items badge — the preview popover slides down with Product / Qty / UOM. Move your cursor INTO the popover, it stays open.
What You Get
🎯 One line of archAdd |
📊 Configurable columnsPass |
⚡ No extra RPCReads inner records straight from the list view's |
🎲 Cursor-friendly popover200 ms close-delay so the cursor can move INTO the popover without it slamming shut. Popover cancels its own close while you're hovering its body. |
🔢 Smart truncationCap rows with |
📁 Works on any modelSales, Purchase, Invoices, Pickings, Tasks, anything with a One2many or Many2many. Same widget, different |
End-to-End Setup — 5 Steps
From install to a live hover preview in under three minutes.
Install the module
Apps › Update Apps List › search "One2many Preview" › Install. No dependencies beyond web. No data migration. No asset rebuild.
Pick a list view to enhance
Sales Quotations, Customer Invoices, Vendor Bills, Pickings, Tasks — anywhere a One2many or Many2many column already lives (or anywhere you wish one did).
Add the widget + options dict
Inherit the list view and put widget="o2m_preview" on the field, with a small options dict describing the columns. Save.
Hover. Reveal.
Reload the list. Every row shows the compact N items badge. Hover — the preview popover slides in with the configured columns. Cursor can move into the popover and read the table; leaving closes it after a 200 ms grace.
Repeat on every list that needs it
Same widget, different fields. Sales → Order Lines, Invoices → Invoice Lines, Pickings → Stock Moves, Tasks → Sub-tasks, any custom model with a One2many you'd like to peek into. No new widget for each model.
Options reference
| Key | Type | Default | Purpose |
|---|---|---|---|
fields |
list | auto-detect first 3 | Ordered inner-field names to show as columns. |
labels |
list | each field's string |
Display labels matching fields 1:1. |
title |
string | field's own label | Header text at the top of the popover. |
max_rows |
int | 30 |
Cap the preview at N rows; "... and X more" footer. |
Drop-in patterns
Sales Orders → Order Lines<field name="order_line"
widget="o2m_preview"
options="{'fields': ['product_id',
'product_uom_qty',
'product_uom'],
'labels': ['Product','Qty','UOM']}"/>
|
Invoices → Invoice Lines<field name="invoice_line_ids"
widget="o2m_preview"
options="{'fields': ['name', 'quantity',
'price_unit',
'price_subtotal'],
'title': 'Invoice Lines'}"/>
|
Pickings → Stock Moves<field name="move_ids_without_package"
widget="o2m_preview"
options="{'fields': ['product_id',
'product_uom_qty', 'state'],
'labels': ['Product','Demand','Status'],
'title': 'Moves'}"/>
|
Tasks → Sub-tasks<field name="child_ids"
widget="o2m_preview"
options="{'fields': ['name', 'stage_id',
'user_ids'],
'title': 'Sub-tasks',
'max_rows': 50}"/>
|
⚠ Pass options.fields on list views
Odoo only fetches fields that the view's arch asks for. A
list-view embed like <field name="invoice_line_ids"
widget="o2m_preview"/> — without
options — gives the inner records only
their id. The badge shows the right count, but
the popover body has nothing to render.
Pass options="{'fields': [...]}" and the
widget's relatedFields hook tells the loader
which inner fields to fetch. Or, if you prefer, embed a
hidden inner subview —
<list><field name="..." optional="hide"/></list>
— the loader fetches everything in that subview too.
Form-view embeds usually have the inner fields already
loaded, so you can skip options there and let
the auto-detect take over.
⚙ How it works (technical)
- Pure OWL 2 field widget. No Python models, no data files, no migrations.
- Registered via
registry.category("fields").add("o2m_preview", ...)withsupportedTypes: ["one2many", "many2many"]so the arch validator stays happy. - Reads inner records from
record.data[name].records, which the list view already loaded — no extra RPC. Inner field metadata (type + Selection labels) comes fromrecord.data[name].fields. - Popover opened via Odoo's standard
usePopoverhook. The cell schedules a 200 ms delayed close onmouseleaveso you can move the cursor INTO the popover without it slamming shut; the popover cancels its own close while the cursor is over it. - Value formatter handles Many2one (display_name / [id, name] tuple), Selection (key → label), Boolean (Yes / empty), and numbers (locale formatting, integer pass-through).
Compatibility
Odoo 18.0 — Community & Enterprise •
Single hard dependency: web (standard frontend bundle) •
OWL 2 component, modern asset bundle
Built by Alphasoft
We build practical Odoo modules for real businesses — accounting, inventory, reporting, and the small UI patches that make daily work less click-heavy.
www.alphasoft.co.id
Odoo Proprietary License v1.0 This software and associated files (the "Software") may only be used (executed, modified, executed after modifications) if you have purchased a valid license from the authors, typically via Odoo Apps, or if you have received a written agreement from the authors of the Software (see the COPYRIGHT file). You may develop Odoo modules that use the Software as a library (typically by depending on it, importing it and using its resources), but without copying any source code or material from the Software. You may distribute those modules under the license of your choice, provided that this license is compatible with the terms of the Odoo Proprietary License (For example: LGPL, MIT, or proprietary licenses similar to this one). It is forbidden to publish, distribute, sublicense, or sell copies of the Software or modified copies of the Software. The above copyright notice and this permission notice must be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Please log in to comment on this module