Sequential fields in Odoo are also called auto-increment fields and an auto-increment number is generated every time a new record is generated.
#newsequenceinodoo #odootutorial #odoodevelopment #odoo #odoo14 #odootechnical #odoo14technical
If we need to add a sequence field for naming to our custom model, we can do it easily by incrementing the name field. We can also generate a serial number by creating a new field or inheriting an old field and auto-incrementing the field. So first, we need to create a “data folder” in our module, in which we will create an “ir.sequence” file, which is an XML file that will help to set up what we want to create for our fields sequence
#add #sequence #Odoo