1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_mx_edi/models/account_journal.py
2024-12-10 09:04:09 +07:00

14 lines
414 B
Python

# -*- coding: utf-8 -*-
from odoo import fields, models
class AccountJournal(models.Model):
_inherit = 'account.journal'
l10n_mx_edi_payment_method_id = fields.Many2one(
comodel_name='l10n_mx_edi.payment.method',
string="Payment Way",
help="Indicates the way the payment was/will be received, where the options could be: "
"Cash, Nominal Check, Credit Card, etc.")