Commit 81d1d44a authored by Xiaowu Zhang's avatar Xiaowu Zhang

erp5_web_renderjs_ui: fix link error

parent fba538ab
...@@ -213,6 +213,7 @@ ...@@ -213,6 +213,7 @@
parent_element = document.createElement("div");\n parent_element = document.createElement("div");\n
suboption_dict.jio_key = options.jio_key;\n suboption_dict.jio_key = options.jio_key;\n
suboption_dict.view = options.view;\n suboption_dict.view = options.view;\n
suboption_dict.begin_from = options.begin_from;\n
\n \n
\n \n
// options = options.form_gadget || {};\n // options = options.form_gadget || {};\n
...@@ -524,7 +525,7 @@ ...@@ -524,7 +525,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>945.61212.37056.32187</string> </value> <value> <string>945.61367.58694.36949</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -542,7 +543,7 @@ ...@@ -542,7 +543,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1443019673.69</float> <float>1443103892.32</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -143,7 +143,6 @@ ...@@ -143,7 +143,6 @@
.declareAcquiredMethod("getUrlFor", "getUrlFor")\n .declareAcquiredMethod("getUrlFor", "getUrlFor")\n
.declareAcquiredMethod("getUrlParameter", "getUrlParameter")\n .declareAcquiredMethod("getUrlParameter", "getUrlParameter")\n
.declareAcquiredMethod("redirect", "redirect")\n .declareAcquiredMethod("redirect", "redirect")\n
.declareAcquiredMethod("pleasePublishMyState", "pleasePublishMyState")\n
.declareAcquiredMethod("getFieldTypeGadgetUrl", "getFieldTypeGadgetUrl")\n .declareAcquiredMethod("getFieldTypeGadgetUrl", "getFieldTypeGadgetUrl")\n
.declareAcquiredMethod("triggerSortEditor", "triggerSortEditor")\n .declareAcquiredMethod("triggerSortEditor", "triggerSortEditor")\n
//////////////////////////////////////////////\n //////////////////////////////////////////////\n
...@@ -415,8 +414,12 @@ ...@@ -415,8 +414,12 @@
setNext();\n setNext();\n
}\n }\n
return RSVP.all([\n return RSVP.all([\n
gadget.getUrlFor({command: \'change\', options: prev_param}),\n gadget.getUrlFor({command: \'change\', options: {jio_key: gadget.props.jio_key, "extended_search": gadget.props.extended_search || "",\n
gadget.getUrlFor({command: \'change\', options: next_param})\n "domain_tree": gadget.props.domain_tree || "", "sort_list": gadget.props.sort_list || "",\n
"begin_from":prev_param.begin_from}}),\n
gadget.getUrlFor({command: \'change\', options: {jio_key: gadget.props.jio_key, "extended_search": gadget.props.extended_search || "",\n
"domain_tree": gadget.props.domain_tree || "", "sort_list": gadget.props.sort_list || "",\n
"begin_from":next_param.begin_from}})\n
]);\n ]);\n
\n \n
}).push(function (url_list) {\n }).push(function (url_list) {\n
...@@ -730,7 +733,7 @@ ...@@ -730,7 +733,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>945.61352.3504.31146</string> </value> <value> <string>945.62766.49396.3532</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -748,7 +751,7 @@ ...@@ -748,7 +751,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1443084102.55</float> <float>1443103658.85</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -175,6 +175,7 @@ ...@@ -175,6 +175,7 @@
if (options.domain_tree) {\n if (options.domain_tree) {\n
form_options.form_definition.domain_tree = options.domain_tree;\n form_options.form_definition.domain_tree = options.domain_tree;\n
}\n }\n
form_options.begin_from = options.begin_from;\n
form_options.view = options.view;\n form_options.view = options.view;\n
form_options.jio_key = options.jio_key;\n form_options.jio_key = options.jio_key;\n
\n \n
...@@ -383,7 +384,7 @@ ...@@ -383,7 +384,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>945.61351.20085.52343</string> </value> <value> <string>945.61352.44246.61576</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -401,7 +402,7 @@ ...@@ -401,7 +402,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1443018760.5</float> <float>1443103764.9</float>
<string>UTC</string> <string>UTC</string>
</tuple> </tuple>
</state> </state>
......
...@@ -176,6 +176,7 @@ ...@@ -176,6 +176,7 @@
sub_options.sort_list = options.sort_list;\n sub_options.sort_list = options.sort_list;\n
sub_options.hide_item = options.hide_item;\n sub_options.hide_item = options.hide_item;\n
sub_options.domain_tree = options.domain_tree;\n sub_options.domain_tree = options.domain_tree;\n
sub_options.begin_from = options.begin_from;\n
sub_options.erp5_document = erp5_document;\n sub_options.erp5_document = erp5_document;\n
sub_options.form_definition = erp5_form;\n sub_options.form_definition = erp5_form;\n
sub_options.view = options.view;\n sub_options.view = options.view;\n
...@@ -335,7 +336,7 @@ ...@@ -335,7 +336,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>945.59567.60083.25890</string> </value> <value> <string>945.61210.379.61422</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -353,7 +354,7 @@ ...@@ -353,7 +354,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1443010200.33</float> <float>1443103808.81</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