Commit b8e7620e authored by steurwadkar's avatar steurwadkar

Changes made for Group scheme in Sales Order html wizard screen

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179934 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e87177a6
...@@ -2078,7 +2078,20 @@ var lineNoForTax = 0; ...@@ -2078,7 +2078,20 @@ var lineNoForTax = 0;
document.getElementById("PRE_FORM_VAL").value = xmlString1; document.getElementById("PRE_FORM_VAL").value = xmlString1;
var count = $('#Details tbody tr').length; var count = $('#Details tbody tr').length;
var xmlString = ""; var xmlString = "";
//Added by Santosh on 08-02-2018 to remove schemeRows on Previous button click [Start]
var table = document.getElementById("Details");
var preSchemeRows = table.getElementsByClassName("schemeRow");
var preSchmeRowLen = preSchemeRows.length;
if(preSchmeRowLen > 0)
{
for( var i=count; i>(count-preSchmeRowLen); i--)
{
table.deleteRow(i);
}
count = count - preSchmeRowLen;
}
//Added by Santosh on 08-02-2018 to remove schemeRows on Previous button click [End]
var itemParent = ","; var itemParent = ",";
//var tranType = document.getElementById("pord_type").value;Wasim //var tranType = document.getElementById("pord_type").value;Wasim
var tranType = "T"; var tranType = "T";
......
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