Add files via upload

This commit is contained in:
gopi17701 2018-07-23 15:32:28 -04:00 committed by GitHub
parent 784197b566
commit 93a7f2c04d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View File

@ -125,6 +125,8 @@ public abstract class DAO {
public abstract void voidInvoice(String InvoiceNumber) throws AstuteException;
public abstract String dupliateInvoice(String InvoiceNumber) throws AstuteException;
public abstract List<Customer> getCustomers(int customerId) throws AstuteException;
public abstract int createCustomer(String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax) throws AstuteException;

View File

@ -523,6 +523,21 @@ public class SqlDAO extends DAO {
throw new AstuteException(DB_ERROR, e.getMessage());
}
}
public String dupliateInvoice(String InvoiceNumber) throws AstuteException {
try {
String generatedInvoiceNumber;
CallableStatement stmt = conn.prepareCall("{? = call duplicate_invoice(?)}");
stmt.registerOutParameter(1, Types.VARCHAR);
stmt.setString(2, InvoiceNumber);
stmt.execute();
generatedInvoiceNumber = stmt.getString(1);
return generatedInvoiceNumber;
} catch (SQLException e) {
e.printStackTrace();
throw new AstuteException(DB_ERROR,e.getMessage());
}
}
/*
=============================== Customer Methods ===============================================
*/