Rev 27723 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
$(function() {$(document).on('click', ".inventory-listing", function() {loadInventory("main-content");});$("#warehouse-wise-billing").live('click',function() {var warehouseId = $('#warehouseMap').val();doGetAjaxRequestHandler(context + "/inventory?warehouseIds=" + warehouseId,function(response) {$('#' + "main-content").html(response);console.log(response)});});});function loadInventory(domId) {doGetAjaxRequestHandler(context + "/inventory",function(response) {$('#' + domId).html(response);});}