-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1094 from simahawk/11-fix-web_advanced_search
[11.0] web_advanced_search: fix initialization of 1st domain node + add changelog
- Loading branch information
Showing
6 changed files
with
155 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,6 +75,50 @@ Improvements to the search view in this addon: | |
* Beautiful, human-readable, domain representation when adding an | ||
advanced filter | ||
|
||
Changelog | ||
========= | ||
|
||
11.0.1.0.2 (2018-10-31) | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
* Fix initialization of 1st domain node | ||
|
||
Sometime the dialog is not ready yet, like on EE version. | ||
Hence when you inject the 1st domain node | ||
the dialog must be already opened. | ||
|
||
[simahawk] | ||
|
||
|
||
11.0.1.0.1 (2018-09-18) | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
* Fix `undefined` in x2m fields | ||
|
||
Before this patch, when searching with the "equals to" operator in any | ||
x2many field, the searched parameter was always `undefined`. | ||
|
||
The problem was that the underlying field manager implementation was | ||
treating those fields as x2many, while the widget used was the `one2many` | ||
one. | ||
|
||
This patch simply mocks the underlying fake record to make think that | ||
any relational field is always a `one2many`. This sets all pieces in | ||
place and makes the field manager work as expected, and thus you can | ||
search as expected too. | ||
|
||
* Make linter happy | ||
|
||
[Yajo] | ||
|
||
|
||
11.0.1.0.0 (2018-07-20) | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
* Rename, refactor, migrate to v11 | ||
|
||
[Yajo] | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
|
@@ -93,6 +137,7 @@ Authors | |
|
||
* Therp BV | ||
* Tecnativa | ||
* Camptocamp | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
@@ -102,6 +147,7 @@ Contributors | |
* Jairo Llopis <[email protected]> | ||
* Rami Alwafaie <[email protected]> | ||
* Jose Mª Bernet <[email protected]> | ||
* Simone Orsi <[email protected]> | ||
|
||
Maintainers | ||
~~~~~~~~~~~ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
* Jairo Llopis <[email protected]> | ||
* Rami Alwafaie <[email protected]> | ||
* Jose Mª Bernet <[email protected]> | ||
* Simone Orsi <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
11.0.1.0.2 (2018-10-31) | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
* Fix initialization of 1st domain node | ||
|
||
Sometime the dialog is not ready yet, like on EE version. | ||
Hence when you inject the 1st domain node | ||
the dialog must be already opened. | ||
|
||
[simahawk] | ||
|
||
|
||
11.0.1.0.1 (2018-09-18) | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
* Fix `undefined` in x2m fields | ||
|
||
Before this patch, when searching with the "equals to" operator in any | ||
x2many field, the searched parameter was always `undefined`. | ||
|
||
The problem was that the underlying field manager implementation was | ||
treating those fields as x2many, while the widget used was the `one2many` | ||
one. | ||
|
||
This patch simply mocks the underlying fake record to make think that | ||
any relational field is always a `one2many`. This sets all pieces in | ||
place and makes the field manager work as expected, and thus you can | ||
search as expected too. | ||
|
||
* Make linter happy | ||
|
||
[Yajo] | ||
|
||
|
||
11.0.1.0.0 (2018-07-20) | ||
~~~~~~~~~~~~~~~~~~~~~~~ | ||
|
||
* Rename, refactor, migrate to v11 | ||
|
||
[Yajo] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters