Commit 9da77a93 authored by Romain Courteaud's avatar Romain Courteaud

WIP erp5_web_renderjs_ui: allow to jump to the same context

parent 623efcb6
...@@ -40,9 +40,18 @@ ...@@ -40,9 +40,18 @@
return; return;
} }
if (gadget.state.jio_key === result.jio_key) { if (gadget.state.jio_key === result.jio_key) {
if ((!result.view) || (result.view === 'view')) {
// Do not redirect to a specific view
// It may probably mean that there is no document to jump to
// don't update navigation history when not really redirecting // don't update navigation history when not really redirecting
return gadget.redirect({command: 'cancel_dialog_with_history'}); command = 'cancel_dialog_with_history';
} else {
command = 'display_with_history';
result_dict.jio_key = gadget.state.jio_key;
result_dict.view = result.view;
result_dict.page = "jump";
} }
} else {
splitted_jio_key_list = result.jio_key.split('/'); splitted_jio_key_list = result.jio_key.split('/');
if (splitted_jio_key_list.length < 2) { if (splitted_jio_key_list.length < 2) {
...@@ -58,7 +67,7 @@ ...@@ -58,7 +67,7 @@
result_dict.jio_key = result.jio_key; result_dict.jio_key = result.jio_key;
result_dict.view = result.view; result_dict.view = result.view;
} }
}
// forced document change thus we update history // forced document change thus we update history
return gadget.redirect({ return gadget.redirect({
......
...@@ -234,7 +234,7 @@ ...@@ -234,7 +234,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>981.337.64021.48674</string> </value> <value> <string>985.40438.63970.10154</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -252,7 +252,7 @@ ...@@ -252,7 +252,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1578410060.49</float> <float>1596199151.01</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment