blob: 466e72028c176bc41675c554955597b372bdd268 (
plain)
1
2
3
4
5
6
7
8
|
# -*- coding: utf-8 -*-
from odoo import fields, models
class ResPartner(models.Model):
_inherit = 'res.partner'
iap_enrich_info = fields.Text('IAP Enrich Info', help='Stores additional info retrieved from IAP in JSON')
|