payment terms change

This commit is contained in:
venbatechnologies@gmail.com 2017-11-30 10:26:05 +05:30
parent a7126f18ee
commit 15282836dc
4 changed files with 72 additions and 0 deletions

View File

@ -2651,6 +2651,25 @@ $('#PoTypeOptions').change(function()
});
$.each(Payment,function(idx,obj)
{
if(obj.PaymentID=='PT05')
{
}
else
{
$("#PaymentMethod").append( $('<option></option>').val(obj.PaymentID).html(obj.PaymentTerms));
}
});
}
});

View File

@ -2156,6 +2156,24 @@ $('#Importoption').change(function()
});
$.each(Payment,function(idx,obj)
{
if(obj.PaymentID=='PT05')
{
}
else
{
$("#PaymentTerms").append( $('<option></option>').val(obj.PaymentID).html(obj.PaymentTerms));
}
});
}
});

View File

@ -247,6 +247,23 @@ $('#PoTypeOptions').change(function()
});
$.each(Payment,function(idx,obj)
{
if(obj.PaymentID=='PT05')
{
}
else
{
$("#PaymentTerms").append( $('<option></option>').val(obj.PaymentID).html(obj.PaymentTerms));
}
});
}
});

View File

@ -124,6 +124,24 @@ $('#PoTypeOptions').change(function()
});
$.each(Payment,function(idx,obj)
{
if(obj.PaymentID=='PT05')
{
}
else
{
$("#PaymentTerms").append( $('<option></option>').val(obj.PaymentID).html(obj.PaymentTerms));
}
});
}
});