Commit b64d91b2 authored by cpandey's avatar cpandey

comment validation of item_code matching on header and detail window


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92507 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4a1c2eae
......@@ -235,16 +235,16 @@ implements BillofQuantityICLocal, BillofQuantityICRemote
ditemCode = checkNull(rs.getString("item_code"));
ditemCode = ditemCode.trim();
System.out.println("item code from boq det table--11--["+ditemCode+"]->>");
if(ditemCode.trim().equalsIgnoreCase(itemCode.trim()))
{
System.out.println("edit flag --4>>["+editFlag+"]");
//|| ("A").equalsIgnoreCase(editFlag)
System.out.println("edit flag --2>>["+editFlag+"]");
errCode = "VMITMSM";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
// if(ditemCode.trim().equalsIgnoreCase(itemCode.trim()))
// {
// System.out.println("edit flag --4>>["+editFlag+"]");
// //|| ("A").equalsIgnoreCase(editFlag)
//
// System.out.println("edit flag --2>>["+editFlag+"]");
// errCode = "VMITMSM";
// errList.add(errCode);
// errFields.add(childNodeName.toLowerCase());
// }
}
rs.close();
rs = null;
......
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