Commit b18a0dfb authored by mnair's avatar mnair

Added changes on mfgDate and expDate validation

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@179295 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f3d62729
......@@ -1038,11 +1038,16 @@ public class PostOrderActivity {
if(mfgDate!= null)
{
xmlBuff.append("<mfg_date><![CDATA["+ sdf.format(mfgDate) +"]]></mfg_date>");
}
}
//xmlBuff.append("<mfg_date><![CDATA["+ sdf.format(mfgDate) +"]]></mfg_date>");
if(expDate!= null)
{
xmlBuff.append("<expiry_date><![CDATA["+ sdf.format(expDate) +"]]></expiry_date>");
}
//xmlBuff.append("<expiry_date><![CDATA["+ sdf.format(expDate) +"]]></expiry_date>");
//Changes done by mayur on 29-JAN-2018------[END]
//xmlBuff.append("<mfg_date><![CDATA["+ sdf.format(mfgDate) +"]]></mfg_date>");
xmlBuff.append("<expiry_date><![CDATA["+ sdf.format(expDate) +"]]></expiry_date>");
xmlBuff.append("<site_code__mfg><![CDATA["+ siteMfg +"]]></site_code__mfg>");
xmlBuff.append("<supp_code__mnfr><![CDATA["+ suppCodemnfr +"]]></supp_code__mnfr>");
xmlBuff.append("<no_art><![CDATA["+ noArt +"]]></no_art>");
......
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