Commit 921ae078 authored by caluka's avatar caluka

no of batch item change quantity set 3 digit decimal value


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97194 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6c7e0711
......@@ -753,7 +753,8 @@ function OnSelectionChange(dbID)
{
noOfBatch = document.getElementById("Detail2."+dbID+".no_of_batch").value;
batchQty = document.getElementById("Detail2."+dbID+".batch_qty").value;
document.getElementById("Detail2."+dbID+".quantity").value = noOfBatch*batchQty;
//alert("noOfBatch["+noOfBatch+"]batchQty["+batchQty+"]");
document.getElementById("Detail2."+dbID+".quantity").value = (noOfBatch*batchQty).toFixed(3);
}
function callExportJSP( )
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment