Rev 27754 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed
$(function() {$(".inventory-listing").live('click', 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);});}