blob: 6cafac15c3e8fc11bd6f5d387137616ffd30b111 (
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.PaymentScreenElectronicPayment', function (require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
class PaymentScreenElectronicPayment extends PosComponent {
mounted() {
this.props.line.on('change', this.render, this);
}
willUnmount() {
if (this.props.line) {
// It could be that the line is deleted before unmounting the element.
this.props.line.off('change', null, this);
}
}
}
PaymentScreenElectronicPayment.template = 'PaymentScreenElectronicPayment';
Registries.Component.add(PaymentScreenElectronicPayment);
return PaymentScreenElectronicPayment;
});
|