Commit 7e6799ae authored by asant's avatar asant

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@192741 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 9b85b0bb
...@@ -3262,7 +3262,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal ...@@ -3262,7 +3262,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal
} }
} }
System.out.println("####"); System.out.println("####");
updatePriceList(priceList, itemCode, unit, revisedRate, chgTerm, chgUser, connection, effDate, validUpto); updatePriceList(priceList, itemCode, revisedRate, chgTerm, chgUser, connection, effDate, validUpto);
} }
} }
...@@ -3285,7 +3285,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal ...@@ -3285,7 +3285,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal
} }
//This method called through workflow //This method called through workflow
private void updatePriceList(String priceList, String itemCode, String unit, String revisedRate, String chgTerm, String chgUser, Connection connection, String effDate, String validUpto) private void updatePriceList(String priceList, String itemCode, String revisedRate, String chgTerm, String chgUser, Connection connection, String effDate, String validUpto)
{ {
System.out.println("#### updatePriceList ....."); System.out.println("#### updatePriceList .....");
PreparedStatement pStmt = null; PreparedStatement pStmt = null;
...@@ -3296,7 +3296,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal ...@@ -3296,7 +3296,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal
//String effFrom = "", validUpto = ""; //String effFrom = "", validUpto = "";
String listType = "", lotNoFrom = "", lotNoTo = "", rateType ="", priceListParent = "", calcBasis = ""; String listType = "", lotNoFrom = "", lotNoTo = "", rateType ="", priceListParent = "", calcBasis = "";
String refNo = "", refOldNo = "", orderType = "", chgRefNo = ""; String refNo = "", refOldNo = "", orderType = "", chgRefNo = "";
String minQty = "", maxQty = "", rate = "", maxRate = "", minRate =""; String minQty = "", maxQty = "", rate = "", maxRate = "", minRate ="",unit = "";
Timestamp validDate = null; Timestamp validDate = null;
//Added by AMOL on 06-11-18 START //Added by AMOL on 06-11-18 START
...@@ -3362,6 +3362,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal ...@@ -3362,6 +3362,7 @@ public class SalesQuotProposal extends ValidatorEJB implements SalesQuotProposal
calcBasis = sRst.getString("CALC_BASIS"); calcBasis = sRst.getString("CALC_BASIS");
refNo = sRst.getString("REF_NO"); refNo = sRst.getString("REF_NO");
refOldNo = sRst.getString("REF_NO_OLD"); refOldNo = sRst.getString("REF_NO_OLD");
unit = sRst.getString("UNIT");
} }
System.out.println("#### After result Set ..."); System.out.println("#### After result Set ...");
close(sRst,sPstmt); close(sRst,sPstmt);
......
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