[MERGE] forward port of branch 8.0 up to 591e329
[odoo/odoo.git] / addons / point_of_sale / static / src / js / widgets.js
index ff3b179..da3844e 100644 (file)
@@ -1129,6 +1129,13 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa
                 self.pos.push_order().then(function(){
                     return new instance.web.Model("ir.model.data").get_func("search_read")([['name', '=', 'action_client_pos_menu']], ['res_id']).pipe(function(res) {
                         window.location = '/web#action=' + res[0]['res_id'];
+                    },function(err,event) {
+                        event.preventDefault();
+                        self.screen_selector.show_popup('error',{
+                            'message': _t('Could not close the point of sale.'),
+                            'comment': _t('Your internet connection is probably down.'),
+                        });
+                        self.close_button.renderElement();
                     });
                 });
             }