alert box removed in editRevenueAmendPO file

This commit is contained in:
gandhimathi 2017-10-30 10:58:44 +00:00
parent f74ffbaf82
commit dd43fa6e64

View File

@ -737,7 +737,7 @@ function calculatePackaging()
{ {
if(FreightCalculation != 0 &&$('#txtEditAfterDiscount').val() == '') if(FreightCalculation != 0 &&$('#txtEditAfterDiscount').val() == '')
{ {
alert(FreightType); //alert(FreightType);
alert('Please Enter the Discount value'); alert('Please Enter the Discount value');
$('#EditDiscountType').focus(); $('#EditDiscountType').focus();
$('#txtEditFreight').val(''); $('#txtEditFreight').val('');
@ -830,7 +830,7 @@ function calculatePackaging()
function SetFreightOption() function SetFreightOption()
{ {
FreightCalculation = $("input:radio[name='optfreight']:checked").val(); FreightCalculation = $("input:radio[name='optfreight']:checked").val();
alert("this is value taken as before after radio value"+FreightCalculation); // alert("this is value taken as before after radio value"+FreightCalculation);
$('#freightmodel').modal('hide'); $('#freightmodel').modal('hide');
calculateFreight(); calculateFreight();
} }