15 lines
385 B
JavaScript
Executable File
15 lines
385 B
JavaScript
Executable File
//START:
|
|
$(document).ready(
|
|
function() {
|
|
DrawHeaders();
|
|
getItems(false);
|
|
//fill consignments
|
|
var count = $('#' + itemsTable + '_T tr').length - 1; // -1 - thead row
|
|
for (var index = 0; index != count; index++) {
|
|
if (items[index].product_is_consignment) {
|
|
$( "<p>"+items[index].part_no+"</p>" ).insertAfter( "#product_link_"+index );
|
|
}
|
|
}
|
|
});
|
|
|