Check flutterwave transfer status

This commit is contained in:
ChiefSoft works
2022-06-05 17:10:28 +00:00
parent 015de9972a
commit 07297f5758
3 changed files with 113 additions and 4 deletions
@@ -127,6 +127,22 @@ return false;
});
return false;
}
function smoneyProcessCheck(link_id) {
var f = document.getElementById('sendmoneyProcessPage'+link_id);
$('#btump'+link_id).html('Processing...');
$('#chck'+link_id).prop('disabled', true);
$.ajax({
url: "/bkotransaction/smTransmitProcess?proc=CHECK&sendmoney_id="+link_id+'&tcode=BLANK&tref=BLANK'
}).done(function (data) {
$('#btump'+link_id).html(data);
//document.offer_individual.rec_email.value = '';
$('#chck'+link_id).prop('disabled', false);
});
return false;
}
// -->
</script>