2
0
mirror of https://github.com/frappe/books.git synced 2024-09-19 19:19:02 +00:00
books/schemas
2023-06-27 13:11:15 +05:30
..
app chore: format files using prettier 2023-06-27 13:11:15 +05:30
core incr: add sections to settings 2023-03-01 13:24:49 +05:30
meta incr: add collapsible sections 2023-02-17 21:56:54 +05:30
regional fix: replace path after a doc has been inserted 2023-04-24 20:32:12 -07:00
tests chore: format files using prettier 2023-06-27 13:11:15 +05:30
index.ts chore: fix all fixable eslint errors in remaining non vue files 2023-06-22 14:22:54 +05:30
README.md chore: format files using prettier 2023-06-27 13:11:15 +05:30
schemas.ts fix: ItemPrice -> PriceListItem 2023-06-06 22:11:54 -07:00
types.ts refactor: Dropdown.vue (add types, simplify) 2023-03-27 00:27:00 -07:00

Schema

Main purpose of this is to describe the shape of the models' table in the database. But there is some irrelevant information in the schemas with respect to this goal. This is information is allowed as long as it is not dynamic, which is impossible anyways as the files are data (.json, not .js)

If any field has to have a dynamic value, it should be added to the controller file by the same name, check the books/models subdirectory for this.

There are a few types of schemas:

  • Regional: Schemas that are in the '../regional' subdirectories these can be of any of the below types.
  • Abstract: Schemas that are not used as they are but only after they are extended by Stub schemas. Indentified by the isAbstract field
  • Subclass: Schemas that have an "extends" field on them, the value of which points to an Abstract schema.
  • Complete: Schemas which are neither abstract nor stub.

For more detail on the meta structure of the schema check books/schemas/types.ts.

Final Schema

This is the schema which is used by the database and app code and is built by combining the above types of schemas.

The order in which a schema is built is:

  1. Build Regional schemas by overriding the fields and other properties of the non regional variants.
  2. Combine Subclass schemas with Abstract schemas to get complete schemas.

Note: if a Regional schema is not present as a non regional variant it's used as it is.

Additional Notes

In all the schemas, the "name" field/column is the primary key. If it isn't explicitly added, the schema builder will add it in.

The following schema fields will be implicitly translated by the frontend: "label", "description", and "placeholder", irrespective of nesting.