forked from Rudoo/L10n_ru
7 lines
155 B
Python
7 lines
155 B
Python
from odoo import fields, models
|
||
|
||
class TaxInherit(models.Model):
|
||
_inherit = 'account.tax'
|
||
|
||
invisiblePF = fields.Boolean('Не видно в ПФ')
|