commit 291fba2c95fa04cb50b15491bc116927244b9f57
Author: Adrián Romero <adrian.romero@openbravo.com>
Date:   Thu Jul 22 17:03:01 2021 +0200

    Fixes ISSUE-0047432: Error when searching for clients with the latest version of Chrome
    * Adds websql indes for column c_bpartner_id on c_bpartner_location

diff --git a/web/org.openbravo.retail.posterminal/js/model/bplocation.js b/web/org.openbravo.retail.posterminal/js/model/bplocation.js
index c2e96f5a6..8f9739190 100644
--- a/web/org.openbravo.retail.posterminal/js/model/bplocation.js
+++ b/web/org.openbravo.retail.posterminal/js/model/bplocation.js
@@ -1,6 +1,6 @@
 /*
  ************************************************************************************
- * Copyright (C) 2012-2020 Openbravo S.L.U.
+ * Copyright (C) 2012-2021 Openbravo S.L.U.
  * Licensed under the Openbravo Commercial License version 1.0
  * You may obtain a copy of the License at http://www.openbravo.com/legal/obcl.html
  * or in the legal folder of this module distribution.
@@ -205,5 +205,12 @@
     }
   ]);
 
+  BPLocation.addIndex([{
+    name: 'bploc_bp_idx',
+    columns: [{
+      name: 'c_bpartner_id'
+    }]
+  }]);
+
   OB.Data.Registry.registerModel(BPLocation);
 })();
