Commit c2070d7b authored by msharma's avatar msharma

set no_art=1 if stock>0 and no_art<=0


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97062 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9e2e02d5
......@@ -1151,7 +1151,7 @@ public class StockUpdate
pstmt=null;
System.out.println("stkQty::["+stkQty+"]");
System.out.println("noArticle::["+noArticle+"]");
if(stkQty>0 && noArticle<0)
if(stkQty>0 && noArticle<=0)
{
sql="update stock set no_art=1 " +
" where item_code = '"+this.itemCode+"'"
......
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