Skip to content
Snippets Groups Projects
Commit 9ebbe08d authored by Jamie McClelland's avatar Jamie McClelland
Browse files

issue #76: handle pay later in civi 4.6

Due to changes in CiviCRM you can no longer count on hidden_processor
field being present.

See https://issues.civicrm.org/jira/browse/CRM-15743
parent 6ba9a51b
No related branches found
No related tags found
No related merge requests found
......@@ -146,15 +146,16 @@
// Handle multiple payment options and Stripe not being chosen.
if ($form.find(".crm-section.payment_processor-section").length > 0) {
if (!($form.find('input[name="hidden_processor"]').length > 0)) {
return true;
}
if ($form.find('input[name="payment_processor"]:checked').length) {
processorId=$form.find('input[name="payment_processor"]:checked').val();
if (!($form.find('input[name="stripe_token"]').length) || ($('#stripe-id').length && $('#stripe-id').val() != processorId)) {
return true;
}
}
else {
// No payment processor is checked.
return true;
}
}
// Handle pay later (option value '0' in payment_processor radio group)
......
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