The next route we work on is get ‘/gl/transactions’. This is will be different from ‘gl/transactionslines/’, since this will be filtering out data and only returning transactions made directly through…
The first route we’ll be working on will be the route to get all general ledger transaction line data. We will be defining the route as /gl/transactions/lines This will essential…
Currently SQL-Ledger stores all accounting data in the table “acc_trans”, short for Account Transactions. This table stores all our debit and credit line data. Hence this table includes data from…
The backend of the new SQL-Ledger will be a REST-API. The goal with the API will be making use of the existing modules inside the “SL” as much as possible…