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

12 lines
324 B
Python

# coding: utf-8
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models
class PosPaymentMethod(models.Model):
_inherit = 'pos.payment.method'
def _get_payment_terminal_selection(self):
return super()._get_payment_terminal_selection() + [('six_iot', 'SIX IOT')]