summaryrefslogtreecommitdiff
path: root/addons/pos_restaurant/static/src/js/Screens/OrderManagementScreen/OrderRow.js
blob: f5a3211455352bda920d2927c4514557daaa637a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
odoo.define('pos_restaurant.OrderRow', function (require) {
    'use strict';

    const OrderRow = require('point_of_sale.OrderRow');
    const Registries = require('point_of_sale.Registries');

    const PosResOrderRow = (OrderRow) =>
        class extends OrderRow {
            get table() {
                return this.order.table ? this.order.table.name : '';
            }
        };

    Registries.Component.extend(OrderRow, PosResOrderRow);

    return OrderRow;
});