You are on page 1of 1

Triggers

Triggers allow to define methods of trytond.model.model.Model that are called when one of those
events happen to a record:

On Creation
On Modification
On Deletions
On Time: When a condition changes over time.

The method signature is:

<method name>(cls, records, trigger)

Where records is the list of records that triggered the event and trigger is the ir.trigger instance which is
triggered.

Triggers are defined by records of ir.trigger. Each record must define a pyson condition which will be
evaluated when the event occurs. Only those records for which the condition is evaluated to true will be
processed by the trigger with the exception of modification triggers which will only process the records
for which the condition is evaluated to false before and evaluated to true after the modification.

© Copyright 2008-2016, Tryton. Back to top


Last updated on May 02, 2017.
Created using Sphinx (http://sphinx-doc.org/) 1.3.1.

You might also like