Commit 9e89ac4c authored by manohar's avatar manohar

Bug fixing price_list__parent wrong condition corrected


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96653 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b28147cc
......@@ -585,7 +585,7 @@ public class PriceList extends ValidatorEJB implements PriceListLocal, PriceList
Is_price_list = genericUtility.getColumnValue("price_list",dom);
//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)/ 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()) )
......
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