blob: c2b623500c802143498c51067496c184b3243f80 (
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
|
odoo.define('pos_restaurant.BackToFloorButton', function (require) {
'use strict';
const PosComponent = require('point_of_sale.PosComponent');
const Registries = require('point_of_sale.Registries');
const { posbus } = require('point_of_sale.utils');
class BackToFloorButton extends PosComponent {
mounted() {
posbus.on('table-set', this, this.render);
}
willUnmount() {
posbus.on('table-set', this);
}
get table() {
return (this.env.pos && this.env.pos.table) || null;
}
get floor() {
const table = this.table;
return table ? table.floor : null;
}
get hasTable() {
return this.table !== null;
}
backToFloorScreen() {
this.showScreen('FloorScreen', { floor: this.floor });
}
}
BackToFloorButton.template = 'BackToFloorButton';
Registries.Component.add(BackToFloorButton);
return BackToFloorButton;
});
|