Commit 21a59be3 authored by cpatil's avatar cpatil

added N in condition


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95319 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f9209a22
......@@ -434,7 +434,7 @@ public class RunMRPWiz extends ValidatorEJB implements RunMRPWizLocal, RunMRPWiz
" mps_order.quantity as quantity,item.unit,'MPS' as type from mps_order,item where" +
" mps_order.item_code=item.item_code " +
" and ( case when mps_order.status is null then 'P' else " +
" mps_order.status end in ('P','T','M')) " +
" mps_order.status end in ('P','T','M','N')) " + // added N in condition on 26/06/14
" and mps_order.site_code >= ? AND mps_order.site_code <= ? " +
" and (mps_order.due_date >= ? ) and (mps_order.due_date " +
" <= ? )" ;
......
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