Commit 2ff4f70f authored by kshinde's avatar kshinde

Bug fix for free quantity not setting in invoice


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@106643 ce508802-f39f-4f6c-b175-0d175dae99d5
parent de842430
...@@ -1294,7 +1294,12 @@ public class PostOrderActivity { ...@@ -1294,7 +1294,12 @@ public class PostOrderActivity {
pstmt1.close(); pstmt1.close();
pstmt1=null; pstmt1=null;
schemeCode = checkScheme(itemCdParent,orderType, custCode,siteCode,stateDlv,countCodeDlv,tranDate,conn); schemeCode = checkScheme(itemCdParent,orderType, custCode,siteCode,stateDlv,countCodeDlv,tranDate,conn);
String temp=checkNull(schemeCode);
System.out.println("schemeCode:::::::::::::::::"+schemeCode);
if(schemeCode==null || temp.trim().length()==0)
{
continue;
}
if(schemeCode !=null && (schemeCode.trim()).length()>0) if(schemeCode !=null && (schemeCode.trim()).length()>0)
{ {
sql="select app_from, valid_upto " sql="select app_from, valid_upto "
......
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