Add files via upload

This commit is contained in:
gopi17701 2018-07-23 14:42:02 -04:00 committed by GitHub
parent 2f4538ad27
commit 23ca67bd85
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 1 deletions

View File

@ -121,6 +121,9 @@ public abstract class DAO {
public abstract GeneratedInvoice getGeneratedInvoice(String invoiceNumber)throws AstuteException;
public abstract void submitInvoice(String InvoiceNumber) throws AstuteException;
public abstract void voidInvoice(String InvoiceNumber) throws AstuteException;
public abstract List<Customer> getCustomers(int customerId) throws AstuteException;

View File

@ -119,7 +119,7 @@ public class SqlDAO extends DAO {
}
// if (contractNum != null && !contractNum.isEmpty()) {
updateClause = updateClause + " contract_num = '" + contractNum.toUpperCase() + "',";
updateClause = updateClause + " contract_num = '" + contractNum + "',";
// }
// if (PODate != null) {
updateClause = updateClause + " PO_Date = STR_TO_DATE(" + PODate + ", '%Y-%m-%d')" + ",";
@ -494,6 +494,35 @@ public class SqlDAO extends DAO {
}
}
public void submitInvoice(String InvoiceNumber) throws AstuteException {
try {
if (InvoiceNumber == null || InvoiceNumber.isEmpty()) {
throw new AstuteException(0, "Invoice Number should not be null!");
} else {
String sql = "UPDATE INVOICE SET INV_STATUS = 2 WHERE UPPER(INV_NO) = 'UPPER(" + InvoiceNumber + ")'";
Statement stmt = conn.createStatement();
stmt.executeUpdate(sql);
}
} catch(SQLException e){
e.printStackTrace();
throw new AstuteException(DB_ERROR, e.getMessage());
}
}
public void voidInvoice(String InvoiceNumber) throws AstuteException {
try {
if (InvoiceNumber == null || InvoiceNumber.isEmpty()) {
throw new AstuteException(0, "Invoice Number should not be null!");
} else {
String sql = "UPDATE INVOICE SET INV_STATUS = 3 WHERE UPPER(INV_NO) = 'UPPER(" + InvoiceNumber + ")'";
Statement stmt = conn.createStatement();
stmt.executeUpdate(sql);
}
} catch(SQLException e){
e.printStackTrace();
throw new AstuteException(DB_ERROR, e.getMessage());
}
}
/*
=============================== Customer Methods ===============================================
*/