Commit 4c9601c7 authored by cpatil's avatar cpatil

change > to == in pickrate method


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92995 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 4c517bc5
......@@ -3593,7 +3593,7 @@ public class DistIssueAct extends ActionHandlerEJB implements DistIssueActLocal,
{
conn = connDriver.getConnectDB("DriverITM");
rate = 0;
if (lotSL.equals("") || lotSL.trim().length() > 0)
if (lotSL.equals("") || lotSL.trim().length() == 0)
{
sql = "SELECT RATE FROM STOCK WHERE ITEM_CODE = ? "
+"AND SITE_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