Se ha denunciado esta presentación.
Se está descargando tu SlideShare. ×

How to Use Constraint and SQL Constraint in Odoo 15

Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Anuncio
Cargando en…3
×

Eche un vistazo a continuación

1 de 16 Anuncio

How to Use Constraint and SQL Constraint in Odoo 15

Descargar para leer sin conexión

Odoo helps you to set constraints to variants which we can perform using python and model constraints. In odoo python constraints are specified along with methods. This Slide will provide an insight on python and model constraints in Odoo 15. In python, constraints are defined along with a method decorated with constraints().

Odoo helps you to set constraints to variants which we can perform using python and model constraints. In odoo python constraints are specified along with methods. This Slide will provide an insight on python and model constraints in Odoo 15. In python, constraints are defined along with a method decorated with constraints().

Anuncio
Anuncio

Más Contenido Relacionado

Presentaciones para usted (20)

Similares a How to Use Constraint and SQL Constraint in Odoo 15 (20)

Anuncio

Más de Celine George (20)

Más reciente (20)

Anuncio

How to Use Constraint and SQL Constraint in Odoo 15

  1. 1. How to Use Constraints and SQL Constraints in Odoo 15 www.cybrosys.com
  2. 2. INTRODUCTION  Odoo helps you to set constraints to variants which we can perform using python and model constraints. In odoo python constraints are specified along with methods.  This Slide will provide an insight on python and model constraints in Odoo 15.  In python, constraints are defined along with a method decorated with constraints().
  3. 3. Odoo provides two ways to set up automatically verified invariants  Python constraints  SQL constraints
  4. 4.  A Python constraint is defined as a method decorated with @api.constrains, and invoked on a recordset.  The decorator specifies which fields are involved in the constraint, so that the constraint is automatically evaluated when one of them is modified.  The method is expected to raise an exception if its invariant is not satisfied: Python Constraints
  5. 5. The field for which constraint is to be applied is specified along with the decorator constraints().
  6. 6. Can provide multiple field values as arguments in the function. Therefore, the function gets invoked each time the value in the field gets modified/changed
  7. 7. There are certain limitations for using constraints() ● constrains() are not supported along with related fields. They can only be applied to simple fields. For example related fields like partner_id.phone. ● constrains() can only be applied to fields that are included in the create and write call because if the field is which is not contained in the view will not trigger a call to python function.
  8. 8.  SQL constraints are defined through the model using _sql_constraints.  The latter is assigned to a list of triples of strings (name, sql_definition, message), where name is a valid SQL constraint name, sql_definition is a table_constraint_ expression, and message is the error message. SQL Constraints
  9. 9. The code is used to prevent the addition of records with the same email. Because it is irrelevant to add the same email to blacklist twice. So for situations like this where you need to apply constraints of this type the _sql_constraints comes into action.
  10. 10.  name - Name for the sql constraint(eg:'unique_email')  definition - Constraint to be applied on the table.(eg:unique (email))  message - Validation message to be displayed. (eg: Email address already exists!)
  11. 11.  Check constraint: A check constraint is defined using the CHECK keyword. Furthermore, as the name suggests it is used to check whether it satisfies a certain condition.
  12. 12.  Not-Null Constraints: NOT NULL keyword is used to specify not null constraints, which means that certain values or fields cannot be NULL.
  13. 13.  Unique Constraint:It is used along with a ‘unique’ keyword.The unique constraint helps you to check whether a specified column in rows satisfies the unique constraint.
  14. 14. For More Details Check our company website for related blogs and Odoo book. Odoo Book V15 Check our YouTube channel for functional and technical videos in Odoo. How to Use Constraint and SQL Constraint? | Model Constraints & SQL Constraints in Odoo 15
  15. 15. Thank You

×