Commit 714105ae authored by manohar's avatar manohar

wrong condition for price_list__parrent corrected


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96655 ce508802-f39f-4f6c-b175-0d175dae99d5
parent c657b59b
...@@ -585,7 +585,7 @@ public class PriceList extends ValidatorEJB implements PriceListLocal, PriceList ...@@ -585,7 +585,7 @@ public class PriceList extends ValidatorEJB implements PriceListLocal, PriceList
Is_price_list = genericUtility.getColumnValue("price_list",dom); Is_price_list = genericUtility.getColumnValue("price_list",dom);
//System.out.println("childNode.getFirstChild() 1. : " + childNode.getFirstChild()); //System.out.println("childNode.getFirstChild() 1. : " + childNode.getFirstChild());
//if (ls_plist_parent == null || ls_plist_parent.trim().length() == 0) // //if (ls_plist_parent == null || ls_plist_parent.trim().length() == 0) //
if (ls_plist_parent != null || ls_plist_parent.trim().length() > 0)// manoharan commented wrong condition/ if (ls_plist_parent != null && ls_plist_parent.trim().length() > 0)// manoharan commented wrong condition/
{ {
if(ls_plist_parent.trim().equals(Is_price_list.trim()) ) if(ls_plist_parent.trim().equals(Is_price_list.trim()) )
......
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