from odoo import api, fields, models, _ class L10nInSectionAlert(models.Model): _name = "l10n_in.section.alert" _description = "indian section alert" name = fields.Char("Section Name") tax_source_type = fields.Selection([ ('tds', 'TDS'), ('tcs', 'TCS'), ], string="Tax Source Type") consider_amount = fields.Selection([ ('untaxed_amount', 'Untaxed Amount'), ('total_amount', 'Total Amount'), ], string="Consider", default='untaxed_amount', required=True) is_per_transaction_limit = fields.Boolean("Per Transaction") per_transaction_limit = fields.Float("Per Transaction limit") is_aggregate_limit = fields.Boolean("Aggregate") aggregate_limit = fields.Float("Aggregate limit") aggregate_period = fields.Selection([ ('monthly', 'Monthly'), ('fiscal_yearly', 'Financial Yearly'), ], string="Aggregate Period", default='fiscal_yearly') l10n_in_section_tax_ids = fields.One2many("account.tax", "l10n_in_section_id", string="Taxes") _sql_constraints = [ ('per_transaction_limit', 'CHECK(per_transaction_limit >= 0)', 'Per transaction limit must be positive'), ('aggregate_limit', 'CHECK(aggregate_limit >= 0)', 'Aggregate limit must be positive'), ] @api.depends('tax_source_type') def _compute_display_name(self): for record in self: record.display_name = f"{record.tax_source_type.upper()} {record.name or ''}" if record.tax_source_type else f"{record.name or ''}" def _get_warning_message(self): warning = ", ".join(self.mapped('name')) section_type = next(iter(set(self.mapped('tax_source_type')))).upper() action = 'collect' if section_type == 'TCS' else 'deduct' return _("It's advisable to %(action)s %(section_type)s u/s %(warning)s on this transaction.", action=action, section_type=section_type, warning=warning )