From 442094f0b220fa690dd577a8e14de5a5182d9297 Mon Sep 17 00:00:00 2001 From: Ugaitz Olaizola Date: Wed, 4 May 2022 09:25:23 +0200 Subject: [PATCH] [FIX] pos_quotation_order add return of server_ids sentence according to the super PosModel _save_to_server method --- pos_quotation_order/__manifest__.py | 2 +- pos_quotation_order/static/src/js/models.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pos_quotation_order/__manifest__.py b/pos_quotation_order/__manifest__.py index 63767b66b..d30052a39 100644 --- a/pos_quotation_order/__manifest__.py +++ b/pos_quotation_order/__manifest__.py @@ -19,7 +19,7 @@ ############################################################################# { 'name': "Pos Quotation Orders", - 'version': '12.0.1.1.0', + 'version': '12.0.84', 'summary': """Create & Process Quotation from POS""", 'description': """This module allows to create and process quotation orders from POS.""", 'author': "Cybrosys Techno Solutions", diff --git a/pos_quotation_order/static/src/js/models.js b/pos_quotation_order/static/src/js/models.js index 675b57478..96e030dbd 100644 --- a/pos_quotation_order/static/src/js/models.js +++ b/pos_quotation_order/static/src/js/models.js @@ -56,6 +56,7 @@ odoo.define('pos_quotation_order.models', function (require) { self.quotations.splice(index, 1); } }); + return server_ids; }); } });