forked from Mapan/odoo17e
13 lines
380 B
Python
13 lines
380 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import models, fields
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
|
|
_inherit = 'res.company'
|
|
|
|
l10n_ar_computable_tax_credit = fields.Selection(
|
|
[('wo_prorate', 'Without Prorate'), ('global', 'Global')],
|
|
string="Computable Tax Credit: Prorate Options",
|
|
default='wo_prorate')
|