l10n_ec_sri_payment.py 304 B

1234567891011121314
  1. # -*- coding: utf-8 -*-
  2. # Part of Odoo. See LICENSE file for full copyright and licensing details.
  3. from odoo import fields, models
  4. class SriPayment(models.Model):
  5. _name = "l10n_ec.sri.payment"
  6. _description = "SRI Payment Method"
  7. name = fields.Char("Name")
  8. code = fields.Char("Code")