File indexing completed on 2026-04-09 07:58:26
0001
0002
0003
0004
0005
0006
0007 $(function () {
0008 "use strict";
0009
0010 $(document).ready(function() {
0011
0012
0013
0014
0015 $("#wait_message").text("Please wait for data loading");
0016
0017 var iddsAPI_processing = appConfig.iddsAPI_processing_detail;
0018
0019
0020
0021 $.getJSON(iddsAPI_processing, function(data){
0022
0023 $.each(data, function(i) {
0024 var row = data[i];
0025
0026 var item_number = i + 1;
0027 var new_item = "<tr>";
0028 new_item += "<td>" + item_number + "</td>";
0029 new_item += '<td class="txt-oflo">' + row.request_id + '</td>';
0030 new_item += '<td>' + row.workload_id + '</td>';
0031 new_item += '<td class="txt-oflo">' + row.processing_id + '</td>';
0032 new_item += '<td>' + row.processing_status + '</td>';
0033 new_item += '<td class="txt-oflo">' + row.processing_created_at + '</td>';
0034 new_item += '<td>' + row.processing_updated_at + '</td>';
0035 new_item += '<td class="txt-oflo">' + row.processing_finished_at + '</td>';
0036 new_item += "</tr>";
0037
0038 $("#transforms_table_body").append(new_item);
0039 });
0040 $('table.display').DataTable();
0041 $("#wait_message").text("");
0042 });
0043
0044 });
0045
0046 });
0047
0048