769eafb483
Flectra is Forked from Odoo v11 commit : (6135e82d73
)
11 lines
261 B
Python
11 lines
261 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
vat_check_vies = fields.Boolean(string='Verify VAT Numbers')
|