Commit aed0f20d authored by smestry's avatar smestry

Updated the Product wizard for itemcode with space and brand.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@102422 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f47a3ccf
...@@ -1423,17 +1423,17 @@ ...@@ -1423,17 +1423,17 @@
"<td width='5%'>" + "<td width='5%'>" +
"<input type='text' class='editInputClass' style='text-align: left;' id=langCodeDesc"+num+" size='30' MAXLENGTH='85' " + "<input type='text' class='editInputClass' style='text-align: left;' id=langCodeDesc"+num+" size='30' MAXLENGTH='85' " +
"style='text-align: right;' onkeyup = 'return specialCharValidate(this.id);' />" + /* Added by Sneha on 23-06-2016 for input of special character */ "style='text-align: right;' onkeyup = 'return specialCharValidate(this.id);' onkeypress='return disableEnter()' />" + /* Added by Sneha on 23-06-2016 for input of special character */
"</td>"+ "</td>"+
"<td width='5%'>" + "<td width='5%'>" +
"<input type='text' class='editInputClass' style='text-align: left;' id=langShDesc"+num+" size='25' MAXLENGTH='100' " + "<input type='text' class='editInputClass' style='text-align: left;' id=langShDesc"+num+" size='25' MAXLENGTH='100' " +
"style='text-align: right;' onkeyup = 'return specialCharValidate(this.id);' />" + /* Added by Sneha on 23-06-2016 for input of special character */ "style='text-align: right;' onkeyup = 'return specialCharValidate(this.id);' onkeypress='return disableEnter()' />" + /* Added by Sneha on 23-06-2016 for input of special character */
"</td>"+ "</td>"+
"<td width='5%'>" + "<td width='5%'>" +
"<input type='text' class='editInputClass' style='text-align: left;' id=langLongDesc"+num+" size='25' MAXLENGTH='490' " + "<input type='text' class='editInputClass' style='text-align: left;' id=langLongDesc"+num+" size='25' MAXLENGTH='490' " +
"style='text-align: right;' onkeyup = 'return specialCharValidate(this.id);' />" + /* Added by Sneha on 23-06-2016 for input of special character */ "style='text-align: right;' onkeyup = 'return specialCharValidate(this.id);' onkeypress='return disableEnter()' />" + /* Added by Sneha on 23-06-2016 for input of special character */
"</td>"+ "</td>"+
"</tr>" "</tr>"
...@@ -2063,13 +2063,15 @@ ...@@ -2063,13 +2063,15 @@
// Barcode value='"+itemBarcode+"' // Barcode value='"+itemBarcode+"'
+"<td>" +"<td>"
+"<input type='text' class='editInputClass' size='13' name='Detail3."+maxRowId+".item_barcode'" +"<input type='text' class='editInputClass' size='13' name='Detail3."+maxRowId+".item_barcode'"
+"id='Detail3."+maxRowId+".item_barcode' maxlength='20' style='width: 100%' />" +"id='Detail3."+maxRowId+".item_barcode' maxlength='20' style='width: 100%' onkeypress='return disableEnter()' />"
+"</td>" +"</td>"
// Commodity No // Commodity No
+"<td>" +"<td>"
+"<input type='text' class='editInputClass' size='13' name='Detail3."+maxRowId+".item_commodity'" +"<input type='text' class='editInputClass' size='13' name='Detail3."+maxRowId+".item_commodity'"
+"id='Detail3."+maxRowId+".item_commodity' maxlength='20' style='width: 100%' value='"+itemCommodity+"' >" +"id='Detail3."+maxRowId+".item_commodity' maxlength='20' style='width: 100%' value='"+itemCommodity+"' "
+ " onkeypress='return disableEnter()' >"
+"</td>" +"</td>"
// Location // Location
...@@ -2341,4 +2343,15 @@ ...@@ -2341,4 +2343,15 @@
}*/ }*/
// Changed by Sneha on 08-07-2016, for special character [End]
function disableEnter()
{
if(window.event.keyCode == 13)
{
//alert("Sneha");
return false;
}
getAppDateFormat();
}
// Changed by Sneha on 08-07-2016, for special character [End]
\ No newline at end of file
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