Commit b446323a authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Do not use 'sub' as key for every multilistfield

parent cddfab91
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
// Single listfield is never mandatory. // Single listfield is never mandatory.
// Check requirement globally instead // Check requirement globally instead
required: 0, required: 0,
key: 'sub', key: gadget.state.key,
title: gadget.state.title, title: gadget.state.title,
hidden: gadget.state.hidden hidden: gadget.state.hidden
}; };
...@@ -105,7 +105,7 @@ ...@@ -105,7 +105,7 @@
return result.getContent(); return result.getContent();
}) })
.push(function (result) { .push(function (result) {
result_list.push(result.sub); result_list.push(result[gadget.state.key]);
}); });
} }
}); });
...@@ -151,7 +151,7 @@ ...@@ -151,7 +151,7 @@
return sub_gadget.getContent(); return sub_gadget.getContent();
}) })
.push(function (result) { .push(function (result) {
var value = result.sub; var value = result[gadget.state.key];
if (sub_gadget.element === gadget.element.lastChild) { if (sub_gadget.element === gadget.element.lastChild) {
if (value) { if (value) {
return appendListField(gadget, "", return appendListField(gadget, "",
......
...@@ -228,7 +228,7 @@ ...@@ -228,7 +228,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>976.20933.34738.37956</string> </value> <value> <string>977.38881.34981.23125</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -246,7 +246,7 @@ ...@@ -246,7 +246,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1560245604.81</float> <float>1570192783.86</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