Odoo allows you to reserve packages along with products during sales orders. This ensures you have enough packaging materials to fulfill the order. Here’s a breakdown of package reservations in Odoo: Configuration (Odoo v15 and above): Enable Packaging: In the Inventory module settings, activate the “Packaging” feature. Set Up Products: In the product category, you’ll […]
A costing method is a technique businesses use to determine the cost of producing a good or providing a service. It involves analyzing various cost elements like raw materials, labor, and overhead expenses to accurately calculate the total cost per unit. #odoo17 There are different costing methods, each with its own advantages and best suited […]
Odoo uses reservation methods to control how and when products are reserved for deliveries or manufacturing orders. This helps ensure you have the stock on hand to fulfill orders without overselling. There are three main reservation methods in Odoo: At Confirmation: This method automatically reserves products when a sales order is confirmed, if there’s enough […]
This video explains how to build a module in Odoo 17 using the scaffold method. Scaffolding is the process of building a skeleton structure for a module in Odoo. It is a single-line command. It saves a lot of time for the developers, and there is no need to create files manually. To build a […]
Replenishment methods in manufacturing refer to the strategies and processes used to manage the flow of materials, components, and products throughout the production and distribution network. #odoofunctionalvideos Video Chapters 00:00 – Introduction 01:00 – Bom creation and set replenishment rule. 03:23 – Creation of MO and automatic triggering of PO to replenish the component. These […]
A payment method is a way for customers to pay for goods or services. It can take various forms, such as cash, credit/debit cards, digital wallets (like Apple Pay or Google Pay), bank transfers, checks, and more. #odootutorials Video Chapters 00:00 – Introduction 01:00 – What payment method and payment terminal 01:21 – Create payment […]
The search_count() method returns the number of records matching the search domain. This method accepts a search domain as its argument.Syntax: Model.search_count(args)? int #odoo16 #odootutorials Eg: self.search_count([(‘product_tmpl_id’, ‘=’, record.product_tmpl_id.id),(‘active’, ‘=’, True), ])This returns the set of records satisfying the domain conditions given as the arguments inside the model. #odoodevelopment #odoo #odoobeginers Connect With Us: ————————————— […]
Product costing operations are one of the most difficult duties for a business. Using product costing methodologies, it is simple to assign a definite price to a manufactured product. Video Chapters 00:00 – Introduction 01:21 – How to set the costing method as the standard price. 05:16 – How to set the costing method as […]
Odoo is one of the effective tools for the growth of an organization, to meet the user requirements they need to build the module. #odootutorials One of the easiest methods to build a module is scaffolding. It helps to build a skelton structure of a module. Which is an automatic process with time-consuming. #odoo16videos In […]
The need for profilers is very important for a programmer for the analysis of his program at different aspects. Code profiling helps us to analyze the time taken to execute a program, frequency of a function call, memory usage, complexity of a program, etc. Video Contents 00:00 Introduction 00:47 Graph a method: Produce a graph […]