Add files via upload

This commit is contained in:
gopi17701 2018-07-23 15:33:20 -04:00 committed by GitHub
parent 93a7f2c04d
commit aae875feca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,6 @@ public class InvoiceResource {
@Path("/generateInvoiceNumber/{PONum}")
@GET
public Response generateInvoiceNumber(@PathParam("PONum") String PONum) throws AstuteException {
return new ApiResponse(service.generateInvoiceNumber(PONum)).toResponse();
}
@ -96,4 +95,10 @@ public class InvoiceResource {
service.voidInvoice(InvoiceNumber);
return new ApiResponse(ApiResponse.UPDATE_ACCESS_SUCESS).toResponse();
}
@Path("/{InvoiceNumber}/duplicate")
@PUT
public Response duplicateInvoice(@PathParam("InvoiceNumber") String InvoiceNumber) throws AstuteException {
return new ApiResponse(service.dupliateInvoice(InvoiceNumber)).toResponse();
}
}