forked from Rudoo/L10n_ru
8 lines
177 B
Python
8 lines
177 B
Python
![]() |
from odoo import fields, models, _
|
||
|
|
||
|
|
||
|
class AccountAccount(models.Model):
|
||
|
_inherit = "account.account"
|
||
|
|
||
|
centralized = fields.Boolean(_("Централизованно"))
|