Add files via upload

This commit is contained in:
gopi17701 2018-09-23 18:44:32 -04:00 committed by GitHub
parent 58f6d15e80
commit c16b792d90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -31,6 +31,13 @@ public class InvoiceResource {
return new ApiResponse(service.getInvoiceMaster(invoiceNumber, pmtStatus)).toResponse();
}
@Path("/paymentStatuses")
@GET
public Response getPaymentStatuses() throws AstuteException {
return new ApiResponse(service.getPaymentStatuses()).toResponse();
}
@Path("/detail")
@GET
public Response getInvoiceDetail(@QueryParam("invoiceNumber") String invoiceNumber, @QueryParam("lineItemNo") int lineItemNo)