Commit b4fd9665 authored by smane's avatar smane

Change remarks field description while generating Purchase Milestone Transaction


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99229 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 72c7536d
......@@ -496,7 +496,8 @@ public class GenPurcMilestoneSch extends ValidatorEJB implements Schedule {
System.out.println("wfStatus :"+wfStatus);
//isSavedMilstn =false;//existing previous activity must not be stored in pur_milstn.
if(mistnDueDate != null && mistnComplDate != null && wfStatus.equalsIgnoreCase("C") )
//if(mistnDueDate != null && mistnComplDate != null && wfStatus.equalsIgnoreCase("C") ) // Comment Added by Sagar on 23/11/15
if(wfStatus!=null && "C".equalsIgnoreCase(wfStatus)) // Condition Changed by Sagar on 23/11/15
{
System.out.println("Previous activity is completed!!!");
isSavedMilstn=true;
......@@ -613,8 +614,8 @@ public class GenPurcMilestoneSch extends ValidatorEJB implements Schedule {
pstmt.close();
pstmt = null;
remarks = "Voucher generated for "+taskCode+"("+taskDescr+").";
//remarks = "Voucher generated for "+taskCode+"("+taskDescr+")."; // Comment added by Sagar on 24/11/15
remarks = "Request generated for "+taskCode+"("+taskDescr+")."; // Code added by Sagar on 24/11/15
xmlBuff = new StringBuffer();
System.out.println("--XML CREATION !!!!!--");
......
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