Commit f7ccfaae authored by Mohammed Dohadwala's avatar Mohammed Dohadwala

Added description for stockist, distributor and customer in detail3.

parent 49809b19
...@@ -1510,13 +1510,18 @@ public class SalesQuotationIC extends ValidatorEJB implements ValidatorLocal,Val ...@@ -1510,13 +1510,18 @@ public class SalesQuotationIC extends ValidatorEJB implements ValidatorLocal,Val
String custCodeDist = ""; String custCodeDist = "";
String stockistName = ""; String stockistName = "";
String distributorName = ""; String distributorName = "";
String custName = "";
custCodeStk = checkNull(genericUtility.getColumnValue("cust_code__stk", dom)); custCodeStk = checkNull(genericUtility.getColumnValue("cust_code__stk", dom));
custCode = checkNull(genericUtility.getColumnValue("cust_code", dom1)); custCode = checkNull(genericUtility.getColumnValue("cust_code", dom1));
custName = checkNull(genericUtility.getColumnValue("cust_name", dom1));
valueXmlString.append("<cust_code>") valueXmlString.append("<cust_code>")
.append("<![CDATA["+custCode+"]]>") .append("<![CDATA["+custCode+"]]>")
.append("</cust_code>"); .append("</cust_code>");
valueXmlString.append("<cust_code_desc>")
.append("<![CDATA["+custName+"]]>")
.append("</cust_code_desc>");
BaseLogger.log("3", getUserInfo(), null, "custCodeStk [" + custCodeStk + "]"); BaseLogger.log("3", getUserInfo(), null, "custCodeStk [" + custCodeStk + "]");
BaseLogger.log("3", getUserInfo(), null, "custCode [" + custCode + "]"); BaseLogger.log("3", getUserInfo(), null, "custCode [" + custCode + "]");
......
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