Commit b1a34d8b authored by ppatro's avatar ppatro

Changed by wasim on 19/12/14 start S.SHIPMENT_DATE & S.CONF_DATE are added in bug query


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96993 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b200acea
......@@ -379,8 +379,8 @@ public class ShipmentPrc extends ProcessEJB implements ShipmentPrcLocal,Shipment
test.append( "<ptcn><![CDATA[" ).append(ptcn).append( "]]></ptcn>\r\n" );
test.append( "<shipment_id><![CDATA[" ).append(checkNull(rs.getString("SHIPMENT_ID"))).append( "]]></shipment_id>\r\n" );
//Changed by wasim on 16/12/14 start append columns conf_date and ship_date.start
test.append( "<ship_date><![CDATA[" ).append(checkNull(rs.getDate("SHIPMENT_DATE"))).append("]]></ship_date>\r\n");
test.append( "<conf_date><![CDATA[" ).append(checkNull(rs.getDate("CONF_DATE"))).append("]]></conf_date>\r\n");
test.append( "<ship_date><![CDATA[" ).append(rs.getDate("SHIPMENT_DATE")).append("]]></ship_date>\r\n");
test.append( "<conf_date><![CDATA[" ).append(rs.getDate("CONF_DATE")).append("]]></conf_date>\r\n");
//Changed by wasim on 16/12/14 start append columns conf_date and ship_date.end
test.append( "<tran_name><![CDATA[" ).append(checkNull(rs.getString("TRAN_NAME"))).append( "]]></tran_name>\r\n" );
test.append("\n");
......
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