Commit fe1ee1d6 authored by manohar's avatar manohar

column sequence made proper


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93163 ce508802-f39f-4f6c-b175-0d175dae99d5
parent fc162013
......@@ -309,7 +309,7 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv
getDataSql= " select ihd.tran_id,ihd.line_no,ihd.line_no_sl," +
" case when ihd.hold_status is null then 'H' else ihd.hold_status end as hold_status ," +
" ihd.item_code,ihd.loc_code,ihd.site_code,ihd.status_date,ihd.reas_code,ihd.sch_rel_date," +
" ih.ref_id,ih.confirmed,ih.ref_no,ih.ref_ser,ih.ref_id" +
" ih.ref_ser,ih.ref_id,ih.ref_no, ih.confirmed " +
" from inv_hold_det ihd,inv_hold ih where ( ihd.tran_id = ih.tran_id )" +
" and ( ihd.tran_id >= ? and ihd.tran_id <= ? ) and ( ih.lock_code >= ? and ih.lock_code <= ? )" +
" and ( ihd.sch_rel_date between ? and ? ) and ihd.hold_status <> 'R' ";
......@@ -393,16 +393,14 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv
{
retTabSepStrBuff.append(" ").append("\t");
}
//ref_id
//ref_ser
retTabSepStrBuff.append((rs1.getString(11)==null?" ":rs1.getString(11))).append("\t");
//confirmed
//ref_id
retTabSepStrBuff.append((rs1.getString(12)==null?" ":rs1.getString(12))).append("\t");
//ref_no
retTabSepStrBuff.append((rs1.getString(13)==null?" ":rs1.getString(13))).append("\t"); //added by ritesh on 27/05/13 start
//ref_ser
retTabSepStrBuff.append((rs1.getString(14)==null?" ":rs1.getString(14))).append("\t");
//ref_id
retTabSepStrBuff.append((rs1.getString(15)==null?" ":rs1.getString(15))).append("\t");
// confirmed
retTabSepStrBuff.append((rs1.getString(14)==null?" ":rs1.getString(14))).append("\t"); //added by ritesh on 27/05/13 start
//added by ritesh on 27/05/13
retTabSepStrBuff.append("\n");
count++;
......
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