Subversion Repositories SmartDukaan

Rev

Rev 35771 | Rev 35839 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 35771 Rev 35838
Line 380... Line 380...
380
        var fofoId = $(this).data('fofoid');
380
        var fofoId = $(this).data('fofoid');
381
        var brand = $(this).data('brand');
381
        var brand = $(this).data('brand');
382
 
382
 
383
        var $row = $(this).closest('tr');
383
        var $row = $(this).closest('tr');
384
 
384
 
385
        var shortInvest = $row.find('.shortInvestment-mk').val().trim();
385
        // var shortInvest = $row.find('.shortInvestment-mk').val().trim();
386
        var totalDueWithInterest = $row.find('.totaldue-with-interest-mk').val().trim();
386
        var totalDueWithInterest = $row.find('.totaldue-with-interest-mk').val().trim();
387
        // var shortInvest = 0;
387
        var shortInvest = 0;
388
 
388
 
389
        console.log(shortInvest)
389
        console.log(shortInvest)
390
 
390
 
391
        doGetAjaxRequestHandler(context + "/getPartnerShortageStock?brand=" + brand + "&fofoId=" + fofoId + "&shortInvest=" + shortInvest + "&totalDueWithInterest=" + totalDueWithInterest, function (response) {
391
        doGetAjaxRequestHandler(context + "/getPartnerShortageStock?brand=" + brand + "&fofoId=" + fofoId + "&shortInvest=" + shortInvest + "&totalDueWithInterest=" + totalDueWithInterest, function (response) {
392
 
392