Odoo Extension Techniques: Component, Template, and View Inheritance
Component Inheritance with OWL
/** @odoo-module */
import { BasePopup } from "@point_of_sale/app/popup/base_popup";
import { TranslationService } from "@web/core/l10n/translation";
import { lifecycleHooks, elementRef, reactiveState, cleanup } from "@odoo/owl";
import { LineItem } from "@point_of_sale/app/comp ...
Posted on Mon, 21 Sep 2026 16:18:28 +0000 by ritter
Essential Odoo 17 Development Notes and Configuration Guide
Usage Patterns
To display external image URLs within a Form view, utilize an Html type computed field that returns the image markup.
Pay close attention to the declaration order within the __init__ method when extending models to ensure proper initialization.
System Configuration
Extend res.config.settings to manage system parameters. By assi ...
Posted on Fri, 08 May 2026 17:35:38 +0000 by PHPFEEDER