Commit dc017cef authored by msingh's avatar msingh

Changed by Manish on 18/03/16 for DDUK .


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@100976 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fd5dca86
......@@ -836,19 +836,19 @@ public class UploadOrderEJB extends ActionHandlerEJB implements UploadOrderEJBLo
cityDlv = cityDlv.substring(0, 20);
}
dlvadd1 = checkNull(headerValesMap.get("dlv_add1"));
if (dlvadd1.length() > 40)
if (dlvadd1.length() > 30)
{
dlvadd1 = dlvadd1.substring(0, 40);
dlvadd1 = dlvadd1.substring(0, 30);
}
dlvadd2 = checkNull(headerValesMap.get("dlv_add2"));
if (dlvadd2.length() > 50)
if (dlvadd2.length() > 40)
{
dlvadd2 = dlvadd2.substring(0, 50);
dlvadd2 = dlvadd2.substring(0, 40);
}
dlvadd3 = checkNull(headerValesMap.get("dlv_add3"));
if (dlvadd3.length() > 40)
if (dlvadd3.length() > 30)
{
dlvadd3 = dlvadd3.substring(0, 40);
dlvadd3 = dlvadd3.substring(0, 30);
}
//Changed by Manish on 02/03/16 to set dlv_city ,dlv_add1, dlv_add2, dlv_add3 up to size [end]
......
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