Commit 9314d1b5 authored by prane's avatar prane

stock is not considering if exp_date is null in stock on stock button.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@203593 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e999b0cf
......@@ -733,7 +733,7 @@ public class DespatchAct extends ActionHandlerEJB implements DespatchActLocal, D
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, itemCode);
rs = pstmt.executeQuery();
if (rs.next())
if (rs.next()) actionStock
{
trackShelfLife = rs.getString(1);
}
......@@ -879,7 +879,7 @@ public class DespatchAct extends ActionHandlerEJB implements DespatchActLocal, D
else
{
stkExpDate1 = "";
continue;
//continue;
}
//expDate = new Timestamp(stkExpDate.getTime());
System.out.println("Inside loop expDate ["+expDate+"]");
......
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