bc7a549fdb
* GoCardless integration * Addition of a method for determining if the email should be sent or not * Correction for Tests * Codacy fix * Documents moved to ERPNext * Codacy fix * Codacy fixes * Remove method where not necessary and replace with hasattr
25 lines
581 B
JavaScript
25 lines
581 B
JavaScript
$(document).ready(function() {
|
|
var redirect_flow_id = "{{ redirect_flow_id }}";
|
|
var doctype = "{{ reference_doctype }}";
|
|
var docname = "{{ reference_docname }}";
|
|
|
|
frappe.call({
|
|
method: "erpnext.templates.pages.integrations.gocardless_confirmation.confirm_payment",
|
|
freeze: true,
|
|
headers: {
|
|
"X-Requested-With": "XMLHttpRequest"
|
|
},
|
|
args: {
|
|
"redirect_flow_id": redirect_flow_id,
|
|
"reference_doctype": doctype,
|
|
"reference_docname": docname
|
|
},
|
|
callback: function(r) {
|
|
if (r.message) {
|
|
window.location.href = r.message.redirect_to;
|
|
}
|
|
}
|
|
});
|
|
|
|
});
|