Commit a3fff814 authored by msharma's avatar msharma

Unconfirmed release transaction displayed in warning message


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96136 ce508802-f39f-4f6c-b175-0d175dae99d5
parent eb099b88
......@@ -422,11 +422,12 @@ public String wfValData(Document dom, Document dom1,Document dom2, String objCon
sql="select ihr.tran_id,ihrd.line_no from inv_hold_rel ihr ,inv_hold_rel_det ihrd where " +
" ihr.tran_id=ihrd.tran_id and " +
" ihr.tran_id in( select tran_id from inv_hold_rel_det where tran_id__hold=? and line_no__hold=?)" +
" and ihr.confirmed='N'";
" and line_no__hold=? and ihr.confirmed='N' order by ihr.tran_id,ihrd.line_no";
pstmt1=conn.prepareStatement(sql);
pstmt1.setString(1,invHoldId);
pstmt1.setString(2,invHoldLine);
pstmt1.setString(3,invHoldLine);
rs1=pstmt1.executeQuery();
while(rs1.next())
{
......
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