Commit d809cce4 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@179920 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 123ec161
...@@ -6278,7 +6278,8 @@ function setCheckedScheme(rowID, schemeCode) ...@@ -6278,7 +6278,8 @@ function setCheckedScheme(rowID, schemeCode)
for(var j=0; j<utilisedQtyArry.length; j++) for(var j=0; j<utilisedQtyArry.length; j++)
{ {
var eachQty = utilisedQtyArry[j].value; var eachQty = utilisedQtyArry[j].value;
var chkBox = document.getElementById("Detail2."+(j+1)+".selectbox"); var rowId = utilisedQtyArry[j].getAttribute("rowid");
var chkBox = document.getElementById("Detail2."+rowId+".selectbox");
if(chkBox.checked) if(chkBox.checked)
{ {
if(!isNaN(eachQty)) if(!isNaN(eachQty))
......
...@@ -148,7 +148,7 @@ input:focus{ ...@@ -148,7 +148,7 @@ input:focus{
<td nowrap="true" align="right" style="padding:0px;"> <td nowrap="true" align="right" style="padding:0px;">
<input type="text" class="editInputClass editInputCur" value="0" name="quantity_{applicable_scheme}" id="Detail2.{normalize-space($domId)}.disQty" onpaste="return false;" onkeypress="return isNumberKey(event);" <input type="text" class="editInputClass editInputCur" rowid="{$domId}" value="0" name="quantity_{applicable_scheme}" id="Detail2.{normalize-space($domId)}.disQty" onpaste="return false;" onkeypress="return isNumberKey(event);"
style="width:100%;height:100%;border:none;text-align: right; padding:0px 8px 0px 0px; outline:none font-size: 14px !important;text-align:right; " maxlength="10" style="width:100%;height:100%;border:none;text-align: right; padding:0px 8px 0px 0px; outline:none font-size: 14px !important;text-align:right; " maxlength="10"
onchange="calAmount({$domId},'{applicable_scheme}');" onclick = 'calTrue({$domId});' readonly = 'true' /> onchange="calAmount({$domId},'{applicable_scheme}');" onclick = 'calTrue({$domId});' readonly = 'true' />
</td> </td>
......
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