15 lines
372 B
Python
15 lines
372 B
Python
|
# -*- 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)
|