You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
547 B
24 lines
547 B
/*
|
|
Copyright (C) 2020-Today GRAP (http://www.grap.coop)
|
|
@author: Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
*/
|
|
|
|
|
|
odoo.define('pos_customer_display.gui', function (require) {
|
|
"use strict";
|
|
|
|
var gui = require('point_of_sale.gui');
|
|
|
|
gui.Gui.include({
|
|
|
|
close: function(){
|
|
this.pos.proxy.send_text_customer_display(
|
|
this.pos.proxy.prepare_message_close()
|
|
);
|
|
return this._super();
|
|
},
|
|
|
|
});
|
|
|
|
});
|