Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: rinvoice.js
$(document).ready(function() { $("#btnSave").click(function(){ $('#statusLoader').ajaxStart(function() { $(this).show(); }).ajaxStop(function() { $(this).hide(); }); var transferCredits = 0; var notify = 0; var notificationType = 0; if(document.getElementById('chkNotify').checked) notify = 1; if(document.getElementById('chkNotificationType2').checked) notificationType = 1; $.post(baseURL+apanel_name+"/Sales/ajxrinvoice", { transactionId:$('#txtTransactionId').val(), pMethodId:$('#pMethodId').val(), pStatusId:$('#pStatusId').val(), comments:$('#txtComments').val(), notify:notify, notificationType:notificationType, purpose:'save', id:$('#id').val() }, function(response){ if(response) { showStickyErrorToast(response, '', 'success'); } }); }); $("#chkNotify").click(function() { if(document.getElementById('chkNotify').checked) $("#dvNType").show(); else $("#dvNType").hide(); }); });