Commit 87bf2b6a authored by vvengurlekar's avatar vvengurlekar

StockTransferEJB.java - GTPL point 623- resolve line_no unique constraint issue


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@190009 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3f1568d4
......@@ -1169,11 +1169,12 @@ public class StockTransferEJB extends ValidatorEJB implements StockTransferEJBRe
tranId = genericUtility.getColumnValue("tran_id", currDom);
//li_line_no = integer(gbf_get_argval(is_extra_arg, "line_no"))
lineNo = genericUtility.getColumnValue("line_no", currDom);
if(lineNo != null && lineNo.trim().length()>0)
//Commented by Varsha V On 29-08-18 for GTPL point 623 [ unique constraint]
/*if(lineNo != null && lineNo.trim().length()>0)
{
valueXmlString.append( "<line_no><![CDATA[" ).append( checkNull ( lineNo)).append( "]]></line_no>\r\n" );
}
}*/
//Ended by Varsha V On 29-08-18 for GTPL point 623 [ unique constraint]
}//outer if
else if( currentColumn.trim().equalsIgnoreCase( "item_code" ) )
{
......
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