Commit e7cb5bd5 authored by agaikwad's avatar agaikwad

Added CheckNull Condition.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@106187 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3b867056
......@@ -1660,21 +1660,21 @@ public class SiteItemIC extends ValidatorEJB implements SiteItemICLocal, SiteIte
specReqd = checkNull(rs.getString("spec_reqd"));
bomCode = checkNull(rs.getString("bom_code"));
empCodePln =checkNull(rs.getString("emp_code__pln"));
regPrice = rs.getString("regulated_price");
supplierSour = rs.getString("supp_sour");
regPrice = checkNull(rs.getString("regulated_price"));
supplierSour = checkNull(rs.getString("supp_sour"));
binNo = checkNull(rs.getString("bin_no"));
cycleCount = rs.getString("cycle_count");
cycleCount = checkNull(rs.getString("cycle_count"));
packInstr = checkNull(rs.getString("pack_instr"));
poVal = rs.getString("poval_var");
tolBef = rs.getString("dlv_prd_tol_bef");
tolAft = rs.getString("dlv_prd_tol_aft");
qtyTol = rs.getString("qty_tol_perc");
poVal = checkNull(rs.getString("poval_var"));
tolBef = checkNull(rs.getString("dlv_prd_tol_bef"));
tolAft = checkNull(rs.getString("dlv_prd_tol_aft"));
qtyTol = checkNull(rs.getString("qty_tol_perc"));
itemSer = rs.getString("item_ser");
yield = rs.getString("yield_perc");
orderOpt = rs.getString("order_opt");
orderOpt = checkNull(rs.getString("order_opt"));
//itemSer = rs.getString("item_ser");//change
inteQty = rs.getString("integral_qty");
packCode = rs.getString("pack_code");
packCode = checkNull(rs.getString("pack_code"));
qcReqd = rs.getString("qc_reqd");
autoReqc = rs.getString("auto_reqc");//change
techDescr = rs.getString("tech_descr");
......
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