blob: 5a4e158de3b39e16aa445ba8ee2c28a89b4f4ff9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
odoo.define('point_of_sale.SyncNotification', function(require) {
'use strict';
const { useState } = owl;
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
// Previously SynchNotificationWidget
class SyncNotification extends PosComponent {
constructor() {
super(...arguments);
const synch = this.env.pos.get('synch');
this.state = useState({ status: synch.status, msg: synch.pending });
}
mounted() {
this.env.pos.on(
'change:synch',
(pos, synch) => {
this.state.status = synch.status;
this.state.msg = synch.pending;
},
this
);
}
willUnmount() {
this.env.pos.on('change:synch', null, this);
}
onClick() {
this.env.pos.push_orders(null, { show_error: true });
}
}
SyncNotification.template = 'SyncNotification';
Registries.Component.add(SyncNotification);
return SyncNotification;
});
|