Add files via upload

This commit is contained in:
gopi17701 2018-07-18 16:10:57 -04:00 committed by GitHub
parent 06a58cd59c
commit 47ee5f2b98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 4 deletions

View File

@ -0,0 +1,32 @@
package com.astute.service;
import com.astute.exceptions.AstuteException;
import com.astute.model.InvoicePayment;
import java.sql.Date;
import java.util.List;
import static com.astute.dao.DAO.getDao;
public class InvoicePaymentService extends Service{
public InvoicePaymentService(){
super();
}
public List<InvoicePayment> getInvoicePayments(String invoiceNum)
throws AstuteException {
return getDao().getInvoicePayments(invoiceNum);
}
public void updateInvoicePayment(String invoiceNum, int invoicePaymentId, Double paymentAmount, Date paymentDate)
throws AstuteException {
getDao().updateInvoicePayment(invoiceNum, invoicePaymentId, paymentAmount, paymentDate);
}
public void createInvoicePayment(String invoiceNum, int invoicePaymentTypeId, Double paymentAmount, Date paymentDate)
throws AstuteException {
getDao().createInvoicePayment(invoiceNum, invoicePaymentTypeId, paymentAmount, paymentDate);
}
}

View File

@ -32,9 +32,9 @@ public class POService extends Service{
getDao().updatePOMaster(PONum, contractNum, PODate, contractAmt);
}
public void updatePODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, int serviceTypeId, String schedule, Date deiverBy)
public void updatePODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, int serviceTypeId)
throws AstuteException {
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, serviceTypeId, schedule, deiverBy);
getDao().updatePODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, serviceTypeId);
}
public void createPOMaster(String PONum, String contractNum, Date PODate, Double contractAmt, Integer customerId)
@ -42,9 +42,9 @@ public class POService extends Service{
getDao().createPOMaster(PONum, contractNum, PODate, contractAmt, customerId);
}
public void createPODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, int serviceTypeId, String schedule, Date deiverBy)
public void createPODetail(String POnum, int lineItemNo, String serviceDesc, int feeTypeId, Double qty, int serviceTypeId)
throws AstuteException {
getDao().createPODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, serviceTypeId, schedule, deiverBy);
getDao().createPODetail(POnum, lineItemNo, serviceDesc, feeTypeId, qty, serviceTypeId);
}