Browse Source

[FIX] pos_timeout: effective timeout should depend on the number of orders

pull/439/head
Nils Hamerlinck 5 years ago
parent
commit
0261f3e213
  1. 4
      pos_timeout/static/src/js/pos_timeout.js

4
pos_timeout/static/src/js/pos_timeout.js

@ -18,8 +18,8 @@ odoo.define('pos_timeout.models', function (require) {
_save_to_server: function (orders, options) { _save_to_server: function (orders, options) {
// Get PoS Config Settings // Get PoS Config Settings
var timeout = this.config.pos_order_timeout; var timeout = this.config.pos_order_timeout;
if (timeout > 0) {
arguments[1].timeout = timeout * 1000;
if (timeout > 0 && orders && orders.length) {
arguments[1].timeout = timeout * 1000 * orders.length;
} }
return PosModelParent._save_to_server.apply(this, arguments); return PosModelParent._save_to_server.apply(this, arguments);
}, },

Loading…
Cancel
Save