Commit 475da04e authored by rtiwari's avatar rtiwari

getdata change for get remarks


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94058 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 74bef9fd
...@@ -306,11 +306,11 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv ...@@ -306,11 +306,11 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv
} }
*/ */
System.out.println("refIdFrom["+refIdFrom+"]:::::::refIdTo["+refIdTo+"]"); System.out.println("refIdFrom["+refIdFrom+"]:::::::refIdTo["+refIdTo+"]");
//ih.lock_code ,ihd.lot_no,ihd.lot_sl,ihd.remarks ADDED BY RITESH
getDataSql= " select ihd.tran_id,ihd.line_no,ihd.line_no_sl," + 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 ," + " 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," + " ihd.item_code,ihd.loc_code,ihd.site_code,ihd.status_date,ihd.reas_code,ihd.sch_rel_date," +
" ih.ref_ser,ih.ref_id,ih.ref_no, ih.confirmed, ih.lock_code ,ihd.lot_no,ihd.lot_sl " + " ih.ref_ser,ih.ref_id,ih.ref_no, ih.confirmed, ih.lock_code ,ihd.lot_no,ihd.lot_sl,ihd.remarks " +
" from inv_hold_det ihd,inv_hold ih where ( ihd.tran_id = ih.tran_id )" + " 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.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' "; " and ( ihd.sch_rel_date between ? and ? ) and ihd.hold_status <> 'R' ";
...@@ -444,7 +444,8 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv ...@@ -444,7 +444,8 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv
retTabSepStrBuff.append((rs1.getString(17)==null?" ":rs1.getString(17))).append("\t"); //added by ritesh on 25/12/13 retTabSepStrBuff.append((rs1.getString(17)==null?" ":rs1.getString(17))).append("\t"); //added by ritesh on 25/12/13
// confirmed // confirmed
retTabSepStrBuff.append((rs1.getString(14)==null?" ":rs1.getString(14))).append("\t"); //added by ritesh on 27/05/13 retTabSepStrBuff.append((rs1.getString(14)==null?" ":rs1.getString(14))).append("\t"); //added by ritesh on 27/05/13
//remarks
retTabSepStrBuff.append((rs1.getString(18)==null?" ":rs1.getString(18))).append("\t"); //added by ritesh on 27/05/13
retTabSepStrBuff.append("\n"); retTabSepStrBuff.append("\n");
count++; 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