9 lines
157 B
Python
9 lines
157 B
Python
# coding: utf-8
|
|
from odoo import api, fields, models, _
|
|
|
|
|
|
class ResPartner(models.Model):
|
|
_inherit = 'res.partner'
|
|
|
|
l10n_ca_pst = fields.Char('PST')
|