Commit bd29f91e authored by smanohar's avatar smanohar

P04 condition changed from P03 to P04 as it was wrongly compared

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199782 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e3b3d6d9
...@@ -793,7 +793,9 @@ public class PostOrdCreditChk ...@@ -793,7 +793,9 @@ public class PostOrdCreditChk
+ " and ref_type <> ? "; + " and ref_type <> ? ";
pstmt = conn.prepareStatement(lsSql); pstmt = conn.prepareStatement(lsSql);
if("P03".equals(lsCrPolicy.trim())) // 18-Apr-2019 wrongly compared as P03 insead of P04
//if("P03".equals(lsCrPolicy.trim()))
if("P04".equals(lsCrPolicy.trim()))
{ {
pstmt.setString(1,asCustCodeBil); pstmt.setString(1,asCustCodeBil);
} }
......
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