Skip to content
Snippets Groups Projects
Commit c8fe3435 authored by ynerant's avatar ynerant
Browse files

Some lines of the base.js file mysteriously disappeared...

parent 8751b393
No related branches found
No related tags found
1 merge request!83Beta soon
Pipeline #8214 passed with stages
in 4 minutes and 32 seconds
...@@ -335,39 +335,45 @@ function autoCompleteNote(field_id, note_list_id, notes, notes_display, alias_pr ...@@ -335,39 +335,45 @@ function autoCompleteNote(field_id, note_list_id, notes, notes_display, alias_pr
}) })
}); });
$("#validate_" + id).html("<i class='fa fa-spinner'></i>"); });// end getJSON alias
});
// Perform a PATCH request to the API in order to update the transaction }// end function autocomplete
// If the user has insufficient rights, an error message will appear
$.ajax({
"url": "/api/note/transaction/transaction/" + id + "/", // When a validate button is clicked, we switch the validation status
type: "PATCH", function de_validate(id, validated) {
dataType: "json", let invalidity_reason = $("#invalidity_reason_" + id).val();
headers: { $("#validate_" + id).html("<strong style=\"font-size: 16pt;\">⟳ ...</strong>");
"X-CSRFTOKEN": CSRF_TOKEN
}, // Perform a PATCH request to the API in order to update the transaction
data: { // If the user has insufficient rights, an error message will appear
"resourcetype": "RecurrentTransaction", $.ajax({
"valid": !validated, "url": "/api/note/transaction/transaction/" + id + "/",
"invalidity_reason": invalidity_reason, type: "PATCH",
}, dataType: "json",
success: function () { headers: {
// Refresh jQuery objects "X-CSRFTOKEN": CSRF_TOKEN
$(".validate").click(de_validate); },
data: {
refreshBalance(); "resourcetype": "RecurrentTransaction",
// error if this method doesn't exist. Please define it. "valid": !validated,
refreshHistory(); "invalidity_reason": invalidity_reason,
}, },
error: function (err) { success: function () {
addMsg("Une erreur est survenue lors de la validation/dévalidation " + // Refresh jQuery objects
"de cette transaction : " + err.responseText, "danger"); $(".validate").click(de_validate);
refreshBalance(); refreshBalance();
// error if this method doesn't exist. Please define it. // error if this method doesn't exist. Please define it.
refreshHistory(); refreshHistory();
} },
}); error: function (err) {
}); addMsg("Une erreur est survenue lors de la validation/dévalidation " +
"de cette transaction : " + err.responseText, "danger");
refreshBalance();
// error if this method doesn't exist. Please define it.
refreshHistory();
}
}); });
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment