forked from Mapan/odoo17e
11 lines
221 B
Python
11 lines
221 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import models
|
|
|
|
|
|
class AccountPayment(models.Model):
|
|
_inherit = "account.payment"
|
|
|
|
def _get_whatsapp_safe_fields(self):
|
|
return {'partner_id.mobile', 'currency_id.symbol'}
|