10 lines
190 B
Python
10 lines
190 B
Python
|
from odoo import models
|
||
|
|
||
|
|
||
|
class PosPaymentMethod(models.Model):
|
||
|
_inherit = "pos.payment.method"
|
||
|
|
||
|
# will be overridden.
|
||
|
def _payment_request_from_kiosk(self, order):
|
||
|
pass
|