Add files via upload

This commit is contained in:
gopi17701 2018-07-23 14:43:03 -04:00 committed by GitHub
parent d0f54eff21
commit 27e2c5880c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,4 +82,18 @@ public class InvoiceResource {
return new ApiResponse(service.generateInvoiceNumber(PONum)).toResponse();
}
@Path("/{InvoiceNumber}/submit")
@PUT
public Response submitInvoice(@PathParam("InvoiceNumber") String InvoiceNumber) throws AstuteException {
service.submitInvoice(InvoiceNumber);
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
}
@Path("/{InvoiceNumber}/submit")
@PUT
public Response voidInvoice(@PathParam("InvoiceNumber") String InvoiceNumber) throws AstuteException {
service.submitInvoice(InvoiceNumber);
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
}
}