mirror of
https://github.com/dyiop/astute.git
synced 2025-04-08 14:20:20 -04:00
Add files via upload
This commit is contained in:
parent
fb3cf355f9
commit
bf11813e60
|
@ -32,9 +32,9 @@ public class POService extends Service{
|
|||
getDao().updatePOMaster(PONum, contractNum, PODate, contractAmt, astuteProjectNumber);
|
||||
}
|
||||
|
||||
public void updatePODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, Double fee, int serviceTypeId)
|
||||
public void updatePODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, Double fee, int serviceTypeId, Double remainingQuantity)
|
||||
throws AstuteException {
|
||||
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId);
|
||||
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId, remainingQuantity);
|
||||
}
|
||||
|
||||
public void createPOMaster(String PONum, String contractNum, Date PODate, Double contractAmt, String customerId, String astuteProjectNumber)
|
||||
|
@ -42,9 +42,9 @@ public class POService extends Service{
|
|||
getDao().createPOMaster(PONum, contractNum, PODate, contractAmt, customerId, astuteProjectNumber);
|
||||
}
|
||||
|
||||
public void createPODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, Double fee, int serviceTypeId)
|
||||
public void createPODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, Double fee, int serviceTypeId, Double remainingQuantity)
|
||||
throws AstuteException {
|
||||
getDao().createPODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId);
|
||||
getDao().createPODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, fee, serviceTypeId, remainingQuantity);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user