forked from Mapan/odoo17e
11 lines
261 B
Python
11 lines
261 B
Python
# coding: utf-8
|
|
from odoo import fields, models
|
|
|
|
|
|
class PaymentOptions(models.Model):
|
|
_name = 'l10n_co_edi.payment.option'
|
|
_description = 'Colombian Payment Options'
|
|
|
|
code = fields.Char(string="Code")
|
|
name = fields.Char(string="Payment Option")
|