Commit 03802cfd authored by dsawant's avatar dsawant

updated for new change in pos save


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96474 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 68eac789
......@@ -207,9 +207,9 @@ public class DissIssuePosSave extends ValidatorEJB implements DissIssuePosSave
System.out.println("------------ WorkOrdRcpPostSave postSave method called-----------------tranId from dom: "+ tranId);
if(dom!=null && tranId.length() == 0){
System.out.println("dom not null.........");
tranId = GenericUtility.getInstance().getColumnValue("tran_id",dom);
//tranId = GenericUtility.getInstance().getColumnValue("tran_id",dom);
lineNoS =genericUtility.getColumnValue("line_no",dom);
siteCode= genericUtility.getColumnValue("site_code",dom);
itemCode= genericUtility.getColumnValue("item_code",dom);
......@@ -233,7 +233,7 @@ public class DissIssuePosSave extends ValidatorEJB implements DissIssuePosSave
System.out.println("chgUser----->>["+chgUser+"]");
System.out.println("chgTerm----->>["+chgTerm+"]");
}
}
catch(Exception e)
......
......@@ -638,7 +638,7 @@ public class DistIssWiz extends ValidatorEJB implements DistIssWizLocal, DistIss
pstmt = null;
rs = null;
sql = "select case when avaliable_yn is null then 'N' else avaliable_yn end from distorder where dist_order = ?";
sql = "select case when avaliable_yn is null then 'N' else avaliable_yn end as avaliable_yn from distorder where dist_order = ?";
pstmt=conn.prepareStatement(sql);
pstmt.setString(1,distOrder);
rs = pstmt.executeQuery();
......
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