mirror of
https://github.com/dyiop/astute.git
synced 2025-04-05 21:10:16 -04:00
Add files via upload
This commit is contained in:
parent
e3d1ffac3a
commit
b45c0c5c71
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue
Block a user