14 lines
304 B
Python
14 lines
304 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")
|
||
|
code = fields.Char("Code")
|