blob: 8f2311468f3e94a35b5ec0ddcc88a6ddb90c2604 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
odoo.define('point_of_sale.PaymentScreenPaymentLines', function(require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
class PaymentScreenPaymentLines extends PosComponent {
formatLineAmount(paymentline) {
return this.env.pos.format_currency_no_symbol(paymentline.get_amount());
}
selectedLineClass(line) {
return { 'payment-terminal': line.get_payment_status() };
}
unselectedLineClass(line) {
return {};
}
}
PaymentScreenPaymentLines.template = 'PaymentScreenPaymentLines';
Registries.Component.add(PaymentScreenPaymentLines);
return PaymentScreenPaymentLines;
});
|