Commit 19a40e6c authored by agaikwad's avatar agaikwad

add checknull method for pack_instr,specfic_instr and Special_instr.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98140 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0135db78
......@@ -162,7 +162,7 @@ implements BillofQuantityActLocal, BillofQuantityActRemote
ITMDBAccessEJB itmDBAccessEJB = new ITMDBAccessEJB();
GenericUtility genericUtility = GenericUtility.getInstance();
try
{
loginSite = genericUtility.getValueFromXTRA_PARAMS(xtraParams, "loginSiteCode");
......@@ -1302,9 +1302,9 @@ implements BillofQuantityActLocal, BillofQuantityActRemote
valueXmlString.append("<amount isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("amount", currDetail1)).append("]]>").append("</amount>\r\n");
valueXmlString.append("<no_art isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("no_art", currDetail1)).append("]]>").append("</no_art>\r\n");
valueXmlString.append("<pack_code isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("pack_code", currDetail1)).append("]]>").append("</pack_code>\r\n");
valueXmlString.append("<pack_instr isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("pack_instr", currDetail1)).append("]]>").append("</pack_instr>\r\n");
valueXmlString.append("<specific_instr isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("specific_instr", currDetail1)).append("]]>").append("</specific_instr>\r\n");
valueXmlString.append("<special_instr isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("special_instr", currDetail1)).append("]]>").append("</special_instr>\r\n");
valueXmlString.append("<pack_instr isSrvCallOnChg='0'>").append("<![CDATA[").append(checkNull(genericUtility.getColumnValueFromNode("pack_instr", currDetail1))).append("]]>").append("</pack_instr>\r\n");
valueXmlString.append("<specific_instr isSrvCallOnChg='0'>").append("<![CDATA[").append(checkNull(genericUtility.getColumnValueFromNode("specific_instr", currDetail1))).append("]]>").append("</specific_instr>\r\n");
valueXmlString.append("<special_instr isSrvCallOnChg='0'>").append("<![CDATA[").append(checkNull(genericUtility.getColumnValueFromNode("special_instr", currDetail1))).append("]]>").append("</special_instr>\r\n");
valueXmlString.append("<site_code isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("site_code", currDetail1)).append("]]>").append("</site_code>\r\n");
valueXmlString.append("<unit__rate isSrvCallOnChg='0'>").append("<![CDATA[").append(genericUtility.getColumnValueFromNode("unit__rate", currDetail1)).append("]]>").append("</unit__rate>\r\n");
......
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