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
8c5152cf9c
commit
bc81bc8ec1
|
@ -32,10 +32,10 @@ public class InvoiceService extends Service{
|
|||
|
||||
|
||||
public void updateInvoiceDetail(String invoiceNum, int lineItemNum, int POLineItemNum, int serviceTypeId, String desc,
|
||||
double qty, double fee)
|
||||
double qty, double fee, int feeTypeId)
|
||||
throws AstuteException {
|
||||
getDao().updateInvoiceDetail(invoiceNum, lineItemNum, POLineItemNum, serviceTypeId, desc,
|
||||
qty, fee);
|
||||
qty, fee, feeTypeId);
|
||||
}
|
||||
|
||||
public void createInvoiceMaster(String invoiceNum, Date invoiceDate, String PONum,
|
||||
|
@ -45,10 +45,10 @@ public class InvoiceService extends Service{
|
|||
}
|
||||
|
||||
public void createInvoiceDetail(String invoiceNum, int lineItemNum, int POLineItemNum, int serviceTypeId, String desc,
|
||||
double qty, double fee)
|
||||
double qty, double fee, int feeTypeId)
|
||||
throws AstuteException {
|
||||
getDao().createInvoiceDetail(invoiceNum, lineItemNum, POLineItemNum, serviceTypeId, desc,
|
||||
qty, fee);
|
||||
qty, fee, feeTypeId);
|
||||
}
|
||||
|
||||
public GeneratedInvoice getGeneratedInvoice(String invoiceNumber)
|
||||
|
|
Loading…
Reference in New Issue
Block a user