Odoo18-Base/addons/l10n_ec/models/l10n_ec_sri_payment.py

15 lines
372 B
Python
Raw Permalink Normal View History

2025-03-10 10:52:11 +07:00
# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class SriPayment(models.Model):
_name = "l10n_ec.sri.payment"
_description = "SRI Payment Method"
name = fields.Char("Name", translate=True)
code = fields.Char("Code")
active = fields.Boolean("Active", default=True)