Commit 6c1a4576 authored by kgaikwad's avatar kgaikwad

fix bug in Transaction - PDC received to Receipt

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217964 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 438fbcf0
......@@ -93,7 +93,7 @@ public class PdcToReceiptPrc extends ProcessEJB implements PdcToReceiptPrcLocal,
conn = getConnection();
sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
siteCode = genericUtility.getColumnValue("site_code", dom);
tranType = checkNull(genericUtility.getColumnValue("tran_type", dom));
// tranType = checkNull(genericUtility.getColumnValue("tran_type", dom)); [commented by KailasG on 17-03-2020 which is not use in GetData method ]
System.out.println("siteCode------>" + siteCode + " :" + tranType);
......@@ -602,7 +602,7 @@ public class PdcToReceiptPrc extends ProcessEJB implements PdcToReceiptPrcLocal,
remarks = "Receipt against PDC recd no:" +TranIdPdc ;
//set tran type value
tranType = checkNull(genericUtility.getColumnValue("tran_type", headerDom));//[Added by kailasG on 17-03-2020 Transaction - PDC received to Receipt ]
if(tranType == null || "null".equals(tranType) || tranType.trim().length() == 0)
{
tranType = "PDC";
......
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