blob: e661722f21e94040a28cf86b7e2e2a70ad7f149c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
odoo.define('point_of_sale.PaymentScreenNumpad', function(require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
class PaymentScreenNumpad extends PosComponent {
constructor() {
super(...arguments);
this.decimalPoint = this.env._t.database.parameters.decimal_point;
}
}
PaymentScreenNumpad.template = 'PaymentScreenNumpad';
Registries.Component.add(PaymentScreenNumpad);
return PaymentScreenNumpad;
});
|