Files
pms/pms/models/res_partner_id_category.py
2022-04-03 12:58:54 +02:00

12 lines
290 B
Python

from odoo import fields, models
class ResPartnerIdCategory(models.Model):
_inherit = "res.partner.id_category"
is_vat_equivalent = fields.Boolean(
string="Is VAT Equivalent",
help="If true, this document type is check by vat number",
default=False,
)