April 2016
Beginner to intermediate
400 pages
9h 16m
English
Business logic often means updating records by changing the values of some of their fields. This recipe shows how to add a contact for a partner and modify the date field of the partner as we go.
This recipe will be using the same simplified res.partner definition as the Creating new records recipe previously. You may refer to this simplified definition to know the fields.
The date field of res.partner has no defined meaning in Odoo. In order to illustrate our purpose, we will use this to record an activity date on the partner, so creating a new contact should update the date of the partner.
To update a partner, you can write a new method called add_contact() defined like this:
@api.model ...