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
4b6ec46c78
commit
244c8fd18d
|
@ -107,8 +107,8 @@ public class SqlDAO extends DAO {
|
|||
Double qty = rs.getDouble(5);
|
||||
Double fee = rs.getDouble(6);
|
||||
int serviceTypeId = rs.getInt(7);
|
||||
double remainingQty = rs.getInt(8);
|
||||
PODetail poDetail = new PODetail(poNum, lineItemNum, serviceDesc, feeTypeId, qty, fee, serviceTypeId, qty);
|
||||
double remainingQty = rs.getDouble(8);
|
||||
PODetail poDetail = new PODetail(poNum, lineItemNum, serviceDesc, feeTypeId, qty, fee, serviceTypeId, remainingQty);
|
||||
poDetails.add(poDetail);
|
||||
}
|
||||
return poDetails;
|
||||
|
@ -424,15 +424,22 @@ public class SqlDAO extends DAO {
|
|||
}
|
||||
|
||||
public void deleteInvoice(String invoiceNum) throws AstuteException {
|
||||
try {
|
||||
System.out.println("deleting invoice " + invoiceNum);
|
||||
CallableStatement stmt = conn.prepareCall("DELETE FROM INVOICE WHERE INV_NO = '"+ invoiceNum + "' AND inv_status = 1");
|
||||
stmt.executeUpdate();
|
||||
updateAllRemainingQuantities(invoiceNum);
|
||||
} catch (SQLException e) {
|
||||
e.printStackTrace();
|
||||
throw new AstuteException(DB_ERROR,e.getMessage());
|
||||
}
|
||||
String result = "";
|
||||
try {
|
||||
System.out.println("Calling delete_invoice DB function");
|
||||
CallableStatement stmt = conn.prepareCall("{? = call delete_invoice(?)}");
|
||||
stmt.registerOutParameter(1, Types.VARCHAR);
|
||||
stmt.setString(2, invoiceNum);
|
||||
stmt.executeUpdate();
|
||||
result = stmt.getString(1);
|
||||
System.out.println(result);
|
||||
if (!result.equals("SUCCESS")) {
|
||||
throw new AstuteException(DB_ERROR,result);
|
||||
}
|
||||
} catch (SQLException e) {
|
||||
e.printStackTrace();
|
||||
throw new AstuteException(DB_ERROR,e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user