blob: 7fcc514d1bfb261b046c18c85a7fd7206d59d15c (
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
|
odoo.define('point_of_sale.ReprintReceiptScreen', function (require) {
'use strict';
const AbstractReceiptScreen = require('point_of_sale.AbstractReceiptScreen');
const Registries = require('point_of_sale.Registries');
const ReprintReceiptScreen = (AbstractReceiptScreen) => {
class ReprintReceiptScreen extends AbstractReceiptScreen {
mounted() {
this.printReceipt();
}
confirm() {
this.showScreen('OrderManagementScreen');
}
async printReceipt() {
if(this.env.pos.proxy.printer && this.env.pos.config.iface_print_skip_screen) {
let result = await this._printReceipt();
if(result)
this.showScreen('OrderManagementScreen');
}
}
async tryReprint() {
await this._printReceipt();
}
}
ReprintReceiptScreen.template = 'ReprintReceiptScreen';
return ReprintReceiptScreen;
};
Registries.Component.addByExtending(ReprintReceiptScreen, AbstractReceiptScreen);
return ReprintReceiptScreen;
});
|