This video discusses how to make sure one2many records are deleted when parent records are deleted. #odoodevelopmentvideos Video Contents ————————- 00:37 Introduction 00:38 Example 01:03 ondelete = ‘cascade’ 02:11 Delete parent record This can be done using ondelete =”cascade” attribute. We can use ondelete = ‘cascade’, which is a referential action for a foreign key […]
In business, there are different types of records. And it is essential to provide proper security for those records. #securityinodoo15 In Odoo, there are also some security rules. The rules define who can access the following objects. In record rules, we describe some conditions for certain operations. #odoo15developmentvideos #odoo15videos Video Contents ————————- 0:00 Introduction 0:36 […]
In this video, learn how to make sure only approved timesheets are invoiced to customers. Learn about the flexibility and simplicity offered by Odoo when allowing you to invoice projects/tasks according to each project’s needs. Learn everything you need to grow your business with Odoo, the best open-source management software to run a company, at […]
Whenever we update a module in Odoo, all its XML file gets loaded and updated to the latest version of code available. So we provide a no update attribute with the data tag in our xml if we want to avoid updating to any datas or code within our xml file (say in the case […]
During production, it is natural that some of the raw materials will be damaged and will impact the quantity of the finished products. Knowing how to record these damages is key to analyzing your production cost and your expected revenue. In this video, you will learn how to record this scrap in the affected manufacturing […]
In this video, the area is covered in Odoo security and is called record rule. Record rules restrict access rights to a subset of records. Records rules for the objects can determine who can access the object according to the rules set. One can manage rules based on access modes for the object. Video Contents […]
How to delete record from xml files in odoo As you may know, we can delete records from the UI ( using the delete button in the action in the record) or from the python function. Suppose you need to delete records from the database or install some custom modules, so in that case, you […]
Record rules are conditions that records must satisfy for an operation (create, read, update or delete) to be allowed. It is applied record-by-record after access control has been applied. by using the record rule we can control access to some specific records in that modules in space of control all the records but only for […]