Commit e14630dc authored by ssalve's avatar ssalve

Sarita: Done changes for listType to resolve NullPointerException on 1MAR2018

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@181382 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a2b36ffe
......@@ -5019,7 +5019,9 @@ public class SOrderForm extends ValidatorEJB implements SOrderFormLocal, SOrderF
}
unit = genericUtility.getColumnValue("unit",dom);
listType = getPriceListType(priceList,conn);
if(listType.equalsIgnoreCase("L"))
//Commented by sarita on 01MAR2018
//if(listType.equalsIgnoreCase("L"))
if("L".equalsIgnoreCase(listType))
{
sql1 = " select count(1) from pricelist "
+ " where price_list = ? "
......
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