DocType Directory Structure
After saving the DocTypes, check that the model .json
and .py
files are created in the apps/library_management/library_management
module. The directory structure after creating the models should look like this:
.
├── MANIFEST.in
├── README.md
├── library_management
..
│ ├── library_management
│ │ ├── __init__.py
│ │ └── doctype
│ │ ├── __init__.py
│ │ ├── article
│ │ │ ├── __init__.py
│ │ │ ├── article.json
│ │ │ └── article.py
│ │ ├── library_member
│ │ │ ├── __init__.py
│ │ │ ├── library_member.json
│ │ │ └── library_member.py
│ │ ├── library_membership
│ │ │ ├── __init__.py
│ │ │ ├── library_membership.json
│ │ │ └── library_membership.py
│ │ └── library_transaction
│ │ ├── __init__.py
│ │ ├── library_transaction.json
│ │ └── library_transaction.py