Commit 124e2d1f authored by manohar's avatar manohar

During checking of debit and credit mismatch adjustment entry for rounding...

During checking of debit and credit mismatch adjustment entry for rounding entry trim() removed from chg_user and chg_term as the values are not passed and exception was coming


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104915 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7518254b
...@@ -9169,8 +9169,8 @@ public class FinCommon ...@@ -9169,8 +9169,8 @@ public class FinCommon
//Date should be in applDate Format //Date should be in applDate Format
tranDate = (Timestamp)glTran.get("tran_date"); tranDate = (Timestamp)glTran.get("tran_date");
effDate = (Timestamp)glTran.get("eff_date"); effDate = (Timestamp)glTran.get("eff_date");
chgUser = glTran.get("chg_user").toString(); chgUser = glTran.get("chg_user");
chgTerm = glTran.get("chg_term").toString(); chgTerm = glTran.get("chg_term");
if(chgTerm == null || chgTerm.trim().length() == 0) if(chgTerm == null || chgTerm.trim().length() == 0)
{ {
......
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