Class JournalEntriesApiResource
java.lang.Object
org.apache.fineract.accounting.journalentry.api.JournalEntriesApiResource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateGLJournalEntry(String jsonRequestBody, String commandParam) createReversalJournalEntry(String jsonRequestBody, String transactionId, String commandParam) jakarta.ws.rs.core.ResponsegetJournalEntriesTemplate(Long officeId, String dateFormat) postJournalEntriesTemplate(InputStream uploadedInputStream, org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail, String locale, String dateFormat) retrieveAll(jakarta.ws.rs.core.UriInfo uriInfo, Long officeId, Long glAccountId, Boolean onlyManualEntries, org.apache.fineract.infrastructure.core.api.DateParam fromDateParam, org.apache.fineract.infrastructure.core.api.DateParam toDateParam, org.apache.fineract.infrastructure.core.api.DateParam submittedOnDateFromParam, org.apache.fineract.infrastructure.core.api.DateParam submittedOnDateToParam, String transactionId, Integer entityType, Integer offset, Integer limit, String orderBy, String sortOrder, String locale, String rawDateFormat, Long loanId, Long savingsId, boolean runningBalance, boolean transactionDetails) retrieveJournalEntries(Integer offset, Integer limit, Long entryId, jakarta.ws.rs.core.UriInfo uriInfo) retrieveJournalEntryById(Long journalEntryId, jakarta.ws.rs.core.UriInfo uriInfo, boolean runningBalance, boolean transactionDetails) retrieveOpeningBalance(jakarta.ws.rs.core.UriInfo uriInfo, Long officeId, String currencyCode)
-
Constructor Details
-
JournalEntriesApiResource
public JournalEntriesApiResource()
-
-
Method Details
-
retrieveAll
@GET @Consumes("application/json") @Produces("application/json") public String retrieveAll(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("officeId") Long officeId, @QueryParam("glAccountId") Long glAccountId, @QueryParam("manualEntriesOnly") Boolean onlyManualEntries, @QueryParam("fromDate") org.apache.fineract.infrastructure.core.api.DateParam fromDateParam, @QueryParam("toDate") org.apache.fineract.infrastructure.core.api.DateParam toDateParam, @QueryParam("submittedOnDateFrom") org.apache.fineract.infrastructure.core.api.DateParam submittedOnDateFromParam, @QueryParam("submittedOnDateTo") org.apache.fineract.infrastructure.core.api.DateParam submittedOnDateToParam, @QueryParam("transactionId") String transactionId, @QueryParam("entityType") Integer entityType, @QueryParam("offset") Integer offset, @QueryParam("limit") Integer limit, @QueryParam("orderBy") String orderBy, @QueryParam("sortOrder") String sortOrder, @QueryParam("locale") String locale, @QueryParam("dateFormat") String rawDateFormat, @QueryParam("loanId") Long loanId, @QueryParam("savingsId") Long savingsId, @QueryParam("runningBalance") boolean runningBalance, @QueryParam("transactionDetails") boolean transactionDetails) -
retrieveJournalEntryById
@GET @Path("{journalEntryId}") @Consumes("application/json") @Produces("application/json") public String retrieveJournalEntryById(@PathParam("journalEntryId") Long journalEntryId, @Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("runningBalance") boolean runningBalance, @QueryParam("transactionDetails") boolean transactionDetails) -
createGLJournalEntry
-
createReversalJournalEntry
-
retrieveJournalEntries
-
retrieveOpeningBalance
-
getJournalEntriesTemplate
-
postJournalEntriesTemplate
@POST @Path("uploadtemplate") @Consumes("multipart/form-data") public String postJournalEntriesTemplate(InputStream uploadedInputStream, org.glassfish.jersey.media.multipart.FormDataContentDisposition fileDetail, String locale, String dateFormat)
-