oca-ocb-mail/odoo-bringout-oca-ocb-event_sms/event_sms/models/event_registration.py
2025-08-29 15:20:51 +02:00

13 lines
386 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class Registration(models.Model):
_inherit = 'event.registration'
def _sms_get_number_fields(self):
""" This method returns the fields to use to find the number to use to
send an SMS on a record. """
return ['mobile', 'phone']