Skip to content

Commit

Permalink
incr: add GeneralLedger business logic
Browse files Browse the repository at this point in the history
  • Loading branch information
18alantom committed May 23, 2022
1 parent 86c4889 commit 1e88c55
Show file tree
Hide file tree
Showing 10 changed files with 578 additions and 259 deletions.
2 changes: 1 addition & 1 deletion META.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ individual ones, check the `README.md` in those subdirectories:
| `build` | _server_ | Build specific files not used unless building the project |
| `translations` | _server_ | Collection of csv files containing translations |
| `src` | _client_ | Code that mainly deals with the view layer (all `.vue` are stored here) |
| `reports` | _client_ | Collection of logic code and view layer config files for displaying reports. |
| `reports` | _client\*_ | Collection of logic code and view layer config files for displaying reports. |
| `models` | _client\*_ | Collection of `Model.ts` files that manage the data and some business logic on the client side. |
| `fyo` | _client\*_ | Code for the underlying library that manages the client side |
| `utils` | _agnostic_ | Collection of code used by either sides. |
Expand Down
2 changes: 1 addition & 1 deletion fyo/core/dbHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ export class DatabaseHandler extends DatabaseBase {
async getAllRaw(
schemaName: string,
options: GetAllOptions = {}
): Promise<DocValueMap[]> {
): Promise<RawValueMap[]> {
const all = await this.#getAll(schemaName, options);
this.observer.trigger(`getAllRaw:${schemaName}`, options);
return all;
Expand Down
97 changes: 0 additions & 97 deletions reports/GeneralLedger/GeneralLedger.js

This file was deleted.

Loading

0 comments on commit 1e88c55

Please sign in to comment.