From 83d7c38c38515f6f6a73b47b8b98cecfa84c5c80 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 5 May 2025 16:58:44 +0930 Subject: [PATCH] docs(accounting): added interim ref: #741 #737 --- .../centurion_erp/development/accounting/asset.md | 9 +++++++++ docs/projects/centurion_erp/development/models.md | 8 ++++++++ docs/projects/centurion_erp/index.md | 2 ++ .../centurion_erp/user/accounting/asset.md | 9 +++++++++ .../centurion_erp/user/accounting/index.md | 14 ++++++++++++++ mkdocs.yml | 8 ++++++++ 6 files changed, 50 insertions(+) create mode 100644 docs/projects/centurion_erp/development/accounting/asset.md create mode 100644 docs/projects/centurion_erp/user/accounting/asset.md create mode 100644 docs/projects/centurion_erp/user/accounting/index.md diff --git a/docs/projects/centurion_erp/development/accounting/asset.md b/docs/projects/centurion_erp/development/accounting/asset.md new file mode 100644 index 00000000..a1e557d6 --- /dev/null +++ b/docs/projects/centurion_erp/development/accounting/asset.md @@ -0,0 +1,9 @@ +--- +title: Asset +description: Asset Base Model Development Documentation for Centurion ERP by No Fuss Computing +date: 2025-05-05 +template: project.html +about: https://github.com/nofusscomputing/centurion_erp +--- + +Asset is a base model of Centurion ERP and contains all of the core features. This allows for easier extensibility. diff --git a/docs/projects/centurion_erp/development/models.md b/docs/projects/centurion_erp/development/models.md index 989bdc23..6f9641e6 100644 --- a/docs/projects/centurion_erp/development/models.md +++ b/docs/projects/centurion_erp/development/models.md @@ -67,6 +67,14 @@ Within Centurion ERP there are two types of models, they are: - Sub-Model +Within Centurion ERP there are some base models that are designed to be used for extending Centurion. They are: + +- [Asset](./accounting/asset.md) + +- [Entity](./core/entity.md) + +Using a base model reduces the effort required to add a feature. This is such due to how the base model / sub-model has been designed. That is the base model has the core features so you don't need to add them. All that is required for the extension is that you add your fields and test the differences. + ### Standard Model diff --git a/docs/projects/centurion_erp/index.md b/docs/projects/centurion_erp/index.md index d9f0eedb..2406cf32 100644 --- a/docs/projects/centurion_erp/index.md +++ b/docs/projects/centurion_erp/index.md @@ -31,6 +31,8 @@ Whilst there are many Enterprise Rescource Planning (ERP) applications, Centurio Centurion ERP contains the following modules: +- [Accounting](./user/accounting/index.md) + - Change Management - [Cluster Management](./user/itim/cluster.md) diff --git a/docs/projects/centurion_erp/user/accounting/asset.md b/docs/projects/centurion_erp/user/accounting/asset.md new file mode 100644 index 00000000..b196bbd1 --- /dev/null +++ b/docs/projects/centurion_erp/user/accounting/asset.md @@ -0,0 +1,9 @@ +--- +title: Asset Management +description: Asset Management Module User Documentation for Centurion ERP by No Fuss Computing +date: 2025-05-05 +template: project.html +about: https://github.com/nofusscomputing/centurion_erp +--- + +Asset Management provides the ability to manage the lifecycle of an asset. diff --git a/docs/projects/centurion_erp/user/accounting/index.md b/docs/projects/centurion_erp/user/accounting/index.md new file mode 100644 index 00000000..05d09447 --- /dev/null +++ b/docs/projects/centurion_erp/user/accounting/index.md @@ -0,0 +1,14 @@ +--- +title: Accounting +description: Accounting Module Documentation for Centurion ERP by No Fuss Computing +date: 2025-05-05 +template: project.html +about: https://github.com/nofusscomputing/centurion_erp +--- + +Accounting is a crucial component of operations and Centurion ERP's accounting module serves the purpose of being able to manage this area. + + +## Features + +- [Asset Management](./asset.md) \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index df61c886..441f494a 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -131,6 +131,8 @@ nav: - projects/centurion_erp/development/api/tests/model_views.md + - projects/centurion_erp/development/accounting/asset.md + - projects/centurion_erp/development/fields.md - projects/centurion_erp/development/forms.md @@ -169,6 +171,12 @@ nav: - projects/centurion_erp/user/access/team.md + - Accounting: + + - projects/centurion_erp/user/accounting/index.md + + - projects/centurion_erp/user/accounting/asset.md + - Assistance: - projects/centurion_erp/user/assistance/index.md