Commit e637dea1 authored by wansari's avatar wansari

updated source at line no 1853 to remove trim logic as per pragyan sir


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103832 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b7761a78
......@@ -1850,7 +1850,9 @@ public class DDPorderWizEJB extends ValidatorEJB implements DDPorderWizEJBRemote
}
else
{
acctCodeDr = itemAcctDetr.substring(0,itemAcctDetr.indexOf(",") -1);
//Changed by wasim on 27-OCT-2016 for removing -1 from substring
//acctCodeDr = itemAcctDetr.substring(0,itemAcctDetr.indexOf(",") -1);
acctCodeDr = itemAcctDetr.substring(0,itemAcctDetr.indexOf(","));
cctrCodeDr = itemAcctDetr.substring(itemAcctDetr.indexOf(",") + 1);
}
......
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