Rev 30466 | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
$(document).on('click', '.activated_imeis', function () {if (typeof pendingPO != "undefined") {delete pendingPO;delete pendingPOCustomer;}doGetAjaxRequestHandler(context + "/activatedImeis", function (response) {$('#main-content').html(response);});});$(document).on('click', '.analysis_activated_imeis', function () {var fofoId = $(this).data('fofoid');if (typeof pendingPO != "undefined") {delete pendingPO;delete pendingPOCustomer;}doGetAjaxRequestHandler(context + "/analysis/activatedImeis?fofoId=" + fofoId, function (response) {$('#main-content').html(response);});});$(document).on('click', '.activated_imeis_grn_pending', function () {doGetAjaxRequestHandler(context + "/activated-imeis-grn-pending", function (response) {$('#main-content').html(response);});});$(document).on('click', 'a.activated_imeis_grn_complete', function () {let invoiceNumber = $(this).data('invoice');loadNewGrn("main-content", invoiceNumber);});