Commit 93c84df8 authored by rtiwari's avatar rtiwari

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100203 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a8daadf7
......@@ -1299,10 +1299,10 @@ public class ProofOfDelivery extends ValidatorEJB implements
else if ((currentColumn.trim().equalsIgnoreCase("invoice_id"))) {
// double amount=0.0,exchRate=0.0;
String invDate = "";
Date inDateFrmt;
Map<String, Object> invDetailsMap = null;
invoiceID = genericUtility
.getColumnValue("invoice_id", dom);
......@@ -1334,15 +1334,15 @@ public class ProofOfDelivery extends ValidatorEJB implements
System.out.println("siteCode ----- map :->> "
+ siteCode);
}
if (custCode.length() <= 0) {
//if (custCode.length() <= 0) {
custCode = invDetailsMap.get("cust_code__bill")
.toString();
custCode = custCode == null ? "" : custCode
.trim();
System.out.println("custCode ----- map :->> "
+ custCode);
}
//}
// [START] Added by Sanket Girme
// To get the Invoice date [13-JUL-15]
inDateFrmt = (Date) invDetailsMap.get("tran_date");
......@@ -1354,7 +1354,7 @@ public class ProofOfDelivery extends ValidatorEJB implements
// [END] Added by Sanket Girme to get the Invoice
// date [13-JUL-15]
if (siteCode.length() > 0) {
siteDescr = getNameOrDescrForCode(conn, "SITE",
"DESCR", "SITE_CODE", siteCode);
......
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