Reset author

This commit is contained in:
g* 2025-06-12 09:39:35 +02:00
commit 2fcf9bfdda
108 changed files with 3642 additions and 0 deletions

View file

@ -0,0 +1,6 @@
---
title: "Assets and Logistics"
description: "An overview of the asset management and logistics features of the project."
weight: 30
headless: true
---

View file

@ -0,0 +1,26 @@
---
title: "Financial"
description: "An overview of the financial aspect of the project."
tags:
- HTML
- JavaScript
- CSS
- Logic
---
The financial aspect of the qSelf project tracks and processes expenses, investments, income, assets, and logistics:
* **Expenses:** The fundamental unit tracked is transactions. For more information see the [Transactions](transactions/index.md) page.
* **Investment:** The investment portfolio is tracked using transaction data, with extra information, and is stored in the investment table. For more information see the [Investment](investment/index.md) page.
* **Assets and Logistics:** Records asset purchases and monitors their value, state, and location with a logistics component. For more information see the [Assets](assets/index.md) page.
## Reconciliation
To keep financial information accurate, the reconciliation flows run on a set schedule to check that the liquid money available, investment portfolio value, asset value, and other balances correspond with the reality. This is the primary function of the [`4 Finances`](https://github.com/gugulet-hu/qself-process/tree/main/automate/4%20Finances) flow, which serves all the other financial subflows.
_TBC_

View file

@ -0,0 +1,6 @@
---
title: "Investment"
description: "An overview of the investment management feature of the project."
weight: 20
headless: true
---

View file

@ -0,0 +1,14 @@
---
title: "Transactions"
description: "An overview of the root financial feature of transaction tracking."
---
All financial tracking starts as a transaction, which has the following structure.
| Parameter | Type | Description | Required |
The logic for collecting transactions is handled by the `4a Transactions` flow in Automate, which presents an input form, returns the data via query parameters, and enriches the data with exchange rate information, where necessary, and unit cost calculations.
_TBC_