Commit e2fdfdd8 authored by Romain Courteaud's avatar Romain Courteaud

[erp5_web_renderjs_ui] Notify before reading the form data

parent 41e9c371
...@@ -119,25 +119,25 @@ ...@@ -119,25 +119,25 @@
}) })
.push(function (validity) { .push(function (validity) {
if (validity) { if (validity) {
return erp5_form.getContent() return form_gadget.notifySubmitting()
.push(function () {
return erp5_form.getContent();
})
.push(function (data) { .push(function (data) {
data[form_id.key] = form_id['default']; data[form_id.key] = form_id['default'];
return RSVP.all([ return form_gadget.jio_putAttachment(
form_gadget.notifySubmitting(), form_gadget.state.id,
form_gadget.jio_putAttachment( action.href,
form_gadget.state.id, data
action.href, );
data
)
]);
}) })
.push(function (result_list) { .push(function (result) {
if (result_list[1].target.responseType === "blob") { if (result.target.responseType === "blob") {
return jIO.util.readBlobAsText(result_list[1].target.response); return jIO.util.readBlobAsText(result.target.response);
} }
return {target: {result: result_list[1].target.response}}; return {target: {result: result.target.response}};
}) })
.push(function (event) { .push(function (event) {
var message; var message;
......
...@@ -230,7 +230,7 @@ ...@@ -230,7 +230,7 @@
</item> </item>
<item> <item>
<key> <string>serial</string> </key> <key> <string>serial</string> </key>
<value> <string>958.33121.48203.5614</string> </value> <value> <string>959.56686.26676.10922</string> </value>
</item> </item>
<item> <item>
<key> <string>state</string> </key> <key> <string>state</string> </key>
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
</tuple> </tuple>
<state> <state>
<tuple> <tuple>
<float>1496310722.92</float> <float>1496752669.52</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