Commit f4622000 authored by ssatre's avatar ssatre

EJB source code updated for transaction category request id : F16ASUN007


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@101414 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 336edfa9
......@@ -135,7 +135,7 @@ public class TransacCategoryIC extends ValidatorEJB implements TransacCategoryIC
if(childNodeName.equalsIgnoreCase("tran_cat"))
{
tranCat= checkNull(genericUtility.getColumnValue("tran_cat",dom));
tranCat= checkNull(genericUtility.getColumnValue("tran_cat",dom)).trim();
if(tranCat == null || tranCat.length() ==0)
{
......@@ -177,7 +177,7 @@ public class TransacCategoryIC extends ValidatorEJB implements TransacCategoryIC
if(childNodeName.equalsIgnoreCase("descr"))
{
tranDescr= checkNull(genericUtility.getColumnValue("descr",dom));
tranDescr= checkNull(genericUtility.getColumnValue("descr",dom)).trim();
if(tranDescr == null || tranDescr.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