summaryrefslogtreecommitdiff
path: root/addons/point_of_sale/static/src/js/Screens/PaymentScreen/PaymentMethodButton.js
blob: 8e5853d322f02ee20d5a03e692fa5db4327bcd14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
odoo.define('point_of_sale.PaymentMethodButton', function(require) {
    'use strict';

    const PosComponent = require('point_of_sale.PosComponent');
    const Registries = require('point_of_sale.Registries');

    class PaymentMethodButton extends PosComponent {}
    PaymentMethodButton.template = 'PaymentMethodButton';

    Registries.Component.add(PaymentMethodButton);

    return PaymentMethodButton;
});