Commit 29d1d118 authored by mnair's avatar mnair

Updated changes in PostOrderActivity

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@181038 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 117b1f44
......@@ -649,7 +649,13 @@ public class PostOrderActivity {
xmlBuff.append("<chg_term><![CDATA[" + chgTerm + "]]></chg_term>");
xmlBuff.append("<excise_ref><![CDATA["+ checkNull(gpNo).trim() +"]]></excise_ref>");
xmlBuff.append("<invoice_no><![CDATA["+ checkNull(gpNo).trim() +"]]></invoice_no>");
//Changes done by mayur on 26-02-18------START
if(gpDate !=null)
{
xmlBuff.append("<excise_ref_date><![CDATA["+sdf.format(gpDate) +"]]></excise_ref_date>");
}
//Changes done by mayur on 26-02-18------END
//xmlBuff.append("<excise_ref_date><![CDATA["+sdf.format(gpDate) +"]]></excise_ref_date>");
xmlBuff.append("<freight_status><![CDATA[T]]></freight_status>");
xmlBuff.append("</Detail1>");
......@@ -1056,7 +1062,14 @@ public class PostOrderActivity {
xmlBuff.append("<supp_code__mnfr><![CDATA["+ suppCodemnfr +"]]></supp_code__mnfr>");
xmlBuff.append("<no_art><![CDATA["+ noArt +"]]></no_art>");
xmlBuff.append("<reas_code><![CDATA["+ defReasCode +"]]></reas_code>");
//Changes done by mayur on 26-FEB-2018------[START]
if(retestDate!= null)
{
xmlBuff.append("<retest_date><![CDATA["+ sdf.format(retestDate) +"]]></retest_date>");
}
//Changes done by mayur on 26-FEB-2018------[END]
//xmlBuff.append("<retest_date><![CDATA["+ sdf.format(retestDate) +"]]></retest_date>");
xmlBuff.append("<additional_cost><![CDATA["+ additionalCost +"]]></additional_cost>");
xmlBuff.append("<realised_qty><![CDATA["+ quantity +"]]></realised_qty>");
xmlBuff.append("<supp_challan_qty><![CDATA["+ quantity +"]]></supp_challan_qty>");
......
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