blob: 147ed7c435a0c507c9b34a2ce1f6e03addfaa9a5 (
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
|
odoo.define('point_of_sale.OfflineErrorPopup', function(require) {
'use strict';
const ErrorPopup = require('point_of_sale.ErrorPopup');
const Registries = require('point_of_sale.Registries');
/**
* This is a special kind of error popup as it introduces
* an option to not show it again.
*/
class OfflineErrorPopup extends ErrorPopup {
dontShowAgain() {
this.constructor.dontShow = true;
this.cancel();
}
}
OfflineErrorPopup.template = 'OfflineErrorPopup';
OfflineErrorPopup.dontShow = false;
OfflineErrorPopup.defaultProps = {
confirmText: 'Ok',
cancelText: 'Cancel',
title: 'Offline Error',
body: 'Either the server is inaccessible or browser is not connected online.',
};
Registries.Component.add(OfflineErrorPopup);
return OfflineErrorPopup;
});
|