Odoo18-Base/addons/l10n_id_pos/models/pos_order.py
2025-01-06 10:57:38 +07:00

11 lines
383 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class PosOrder(models.Model):
_inherit = "pos.order"
# referenced in l10n_id/models/res_bank.py where we will link QRIS transactions
# to the record that initiates the payment flow
l10n_id_qris_transaction_ids = fields.Many2many('l10n_id.qris.transaction')