Commit 6cc4a3f2 authored by kshinde's avatar kshinde

Action stock button display only Near expiry stock if ordertype "NE".

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@195677 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f1fcff1f
...@@ -877,7 +877,7 @@ public class DespatchAct extends ActionHandlerEJB implements DespatchActLocal, D ...@@ -877,7 +877,7 @@ public class DespatchAct extends ActionHandlerEJB implements DespatchActLocal, D
if("Y".equalsIgnoreCase(trackShelfLife.trim())) if("Y".equalsIgnoreCase(trackShelfLife.trim()))
{ {
//added by kunal on 10/1/2019 to skip lot if expired //added by kunal on 10/1/2019 to skip lot if expired
if(expDate == null || expDate.before(despTDate)) if(expDate == null || expDate.before(despTDate) || expDate.equals(despTDate))
{ {
continue; continue;
} }
......
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