tryton-sao 6.6.2 → 6.6.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ Version 6.6.3 - 2023-01-15
2
+ --------------------------
3
+ * Bug fixes (see mercurial logs for details)
4
+
1
5
  Version 6.6.2 - 2023-01-02
2
6
  --------------------------
3
7
  * Bug fixes (see mercurial logs for details)
package/COPYRIGHT CHANGED
@@ -1,7 +1,7 @@
1
1
  Copyright (C) 2012-2022 Nicolas Évrard.
2
- Copyright (C) 2012-2022 Cédric Krier.
2
+ Copyright (C) 2012-2023 Cédric Krier.
3
3
  Copyright (C) 2012-2014 Bertrand Chenal.
4
- Copyright (C) 2012-2022 B2CK SPRL.
4
+ Copyright (C) 2012-2023 B2CK SPRL.
5
5
  Copyright (C) 2019 Jitbit.
6
6
  Copyright (C) 2013 Thomas Park
7
7
  Copyright (C) 2020-2021 Maxime Richez
@@ -1,7 +1,7 @@
1
1
  /* This file is part of Tryton. The COPYRIGHT file at the top level of
2
2
  this repository contains the full copyright notices and license terms. */
3
3
  var Sao = {
4
- __version__: '6.6.2',
4
+ __version__: '6.6.3',
5
5
  };
6
6
 
7
7
  (function() {
@@ -13672,7 +13672,8 @@ var Sao = {
13672
13672
  for (var name in fields) {
13673
13673
  var props = fields[name];
13674
13674
  if ((props.type != 'selection') &&
13675
- (props.type != 'reference')) {
13675
+ (props.type != 'multiselection') &&
13676
+ (props.type != 'reference')) {
13676
13677
  continue;
13677
13678
  }
13678
13679
  if (props.selection instanceof Array) {