mirror of
https://github.com/dyiop/astute.git
synced 2025-04-06 21:30:20 -04:00
Add files via upload
This commit is contained in:
parent
8f2168f47e
commit
6000ecdef9
|
@ -17,15 +17,15 @@ public class AuthService extends Service{
|
||||||
return getDao().login(username,password);
|
return getDao().login(username,password);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateCustomer( int customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax)
|
public void updateCustomer( String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void createCustomer(String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax)
|
public void createCustomer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
getDao().createCustomer(customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
getDao().createCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,20 +13,20 @@ public class CustomerService extends Service{
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Customer> getCustomers(int customerId)
|
public List<Customer> getCustomers(String customerId)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
return getDao().getCustomers(customerId);
|
return getDao().getCustomers(customerId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void updateCustomer( int customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax)
|
public void updateCustomer( String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
getDao().updateCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public int createCustomer(String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, int phone, int fax)
|
public String createCustomer(String customerId, String customerName, String billToDept, String add1, String add2, String city, String state, int zip, int ziplast4, String email, Long phone, Long fax)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
return getDao().createCustomer(customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
return getDao().createCustomer(customerId, customerName,billToDept, add1, add2, city, state, zip, ziplast4, email, phone, fax);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ public class POService extends Service{
|
||||||
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId);
|
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void createPOMaster(String PONum, String contractNum, Date PODate, Double contractAmt, Integer customerId, String astuteProjectNumber)
|
public void createPOMaster(String PONum, String contractNum, Date PODate, Double contractAmt, String customerId, String astuteProjectNumber)
|
||||||
throws AstuteException {
|
throws AstuteException {
|
||||||
getDao().createPOMaster(PONum, contractNum, PODate, contractAmt, customerId, astuteProjectNumber);
|
getDao().createPOMaster(PONum, contractNum, PODate, contractAmt, customerId, astuteProjectNumber);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user