mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
12 lines
290 B
Python
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,
|
|
)
|