Commit f241afeb authored by manohar's avatar manohar

In case std_rate is -1, take the rate__stduom


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93844 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bcff2618
......@@ -1194,6 +1194,12 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
}
mfgItemCode = rs.getString("item_code__mfg");
stdRate = rs.getDouble("std_rate");
// 06/11/13 manoharan as per PB code assigned receipt rate in case std_rate is not available
if (stdRate == -1)
{
stdRate = rate;
}
// end 06/11/13 manoharan as per PB code assigned receipt rate in case std_rate is not available
effectStock = rs.getString("effect_stock");
formNo = rs.getString("form_no");
retestDate = rs.getTimestamp("retest_date");
......
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