blob: 024a77b3882d4c8568ada7090fa6facaee8b353c (
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
38
39
|
odoo.define('point_of_sale.MobileOrderWidget', function(require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
class MobileOrderWidget extends PosComponent {
constructor() {
super(...arguments);
this.pane = this.props.pane;
this.update();
}
get order() {
return this.env.pos.get_order();
}
mounted() {
this.order.on('change', () => {
this.update();
this.render();
});
this.order.orderlines.on('change', () => {
this.update();
this.render();
});
}
update() {
const total = this.order ? this.order.get_total_with_tax() : 0;
const tax = this.order ? total - this.order.get_total_without_tax() : 0;
this.total = this.env.pos.format_currency(total);
this.items_number = this.order ? this.order.orderlines.reduce((items_number,line) => items_number + line.quantity, 0) : 0;
}
}
MobileOrderWidget.template = 'MobileOrderWidget';
Registries.Component.add(MobileOrderWidget);
return MobileOrderWidget;
});
|