Add files via upload

This commit is contained in:
gopi17701 2018-07-24 17:19:46 -04:00 committed by GitHub
parent e3d1ffac3a
commit b45c0c5c71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -40,7 +40,7 @@ public class SqlDAO extends DAO {
try {
List<PO> pos = new ArrayList<>();
Statement stmt = conn.createStatement();
String sql = "SELECT PO_num, contract_num, PO_date, customer_id, contract_amt FROM PO ";
String sql = "SELECT PO_num, contract_num, PO_date, customer_id, contract_amt, astute_project_num FROM PO ";
if (PONum != null && !PONum.isEmpty()) {
sql += "WHERE UPPER(PO_num) = '" + PONum.toUpperCase() + "'";
} else if (contractNum != null && !contractNum.isEmpty()) {
@ -58,7 +58,8 @@ public class SqlDAO extends DAO {
Date poDate = rs.getDate(3);
Integer customerId = rs.getInt(4);
Double contractAmt = rs.getDouble(5);
PO po = new PO(poNum, cntrctNum, poDate, customerId, contractAmt);
String astuteProjectNum = rs.getString(6);
PO po = new PO(poNum, cntrctNum, poDate, customerId, contractAmt,astuteProjectNum);
pos.add(po);
}
return pos;