In Odoo 18, landed costs represent the total expenses incurred to bring a product to your warehouse, encompassing the purchase price, shipping fees, insurance, customs duties, taxes, and other related charges. Accurately accounting for these costs ensures precise inventory valuation and profitability analysis. Configuring Landed Costs in Odoo 18: Enable the Landed Costs Feature: Navigate […]
In Odoo, actions are predefined operations that determine what happens when a user interacts with a menu item, button, or other UI elements. Actions define how views, reports, wizards, or other operations behave in response to user input. Types of Actions in Odoo Window Actions (ir.actions.act_window) Used to open views (form, tree, kanban, etc.). Example: […]
In this video, we’ll cover the ‘Other Info’ tab in Odoo Sales, which helps manage key details for your quotations. The Other Info tab in Odoo provides additional settings for quotations, divided into four sections. The Sales section lets you assign a salesperson, sales team, and company (useful in multi-company environments). You also have the […]
In Odoo, menus are part of the user interface that help users navigate to different features and functionalities within each module. Menus are structured hierarchically: main menus, sub-menus, and menu items (actions or views). Here’s a breakdown of menus in Odoo: 🔹 1. Main Menus These are the top-level categories visible on the top bar […]
In Odoo, a menu is a navigation element that allows users to access different modules, views, and functionalities. Menus help to structure the interface, making it easier to navigate through various features. Types of Menus in Odoo Main Menu (Top-Level Menu) Displays primary modules such as Sales, Purchase, Inventory, Accounting, etc. Found in the top navigation […]
This video provides an in-depth look at the Invoice Format Editor, a custom module designed for Odoo 18. This module enables users to configure and customize invoice templates effortlessly, ensuring that invoices align with their business requirements. Viewers will gain insights into the module’s key features, how it enhances the invoicing process, and a step-by-step […]
In the Odoo framework, “models” are used for structuring and managing data that the Odoo application stores. An Odoo model is a Python class that represents a database table. Odoo primarily uses three types of models: 1.models.Model (Regular Models): 2.models.TransientModel (Transient Models): 3.models.AbstractModel (Abstract Models): 1. Regular model/standard model The primary reason for using regular models is […]
To add an icon image to a module in Odoo 18, follow these steps: Prepare the Icon Image: Create an icon image named icon.png. Ensure the image is appropriately sized, typically 256×256 pixels, and in PNG format. Place the Icon in the Module Directory: Within your module’s directory, navigate to or create the following path: […]
The __manifest__.py file provides metadata about your module. Populate it with relevant information { { ‘name’: “College ERP”, ‘version’: “18.0.1.0.1”, ‘license’: “LGPL-3”, ‘summary’: “””An erp for college education”””, ‘description’: “””From student administration to exam this covers all aspects of college”””, ‘author’: “CBMS Techno Solutions”, ‘category’: “Education”, ‘website’: ” ‘maintainer’: “CBMS Techno Solutions”, ‘sequence’: 1, ‘data’: [“security/ir.model.access.csv”, […]