I hereby claim:
- I am jc5 on github.
- I am jc5 (https://keybase.io/jc5) on keybase.
- I have a public key whose fingerprint is 02F4 046C 4B23 6E06 0957 1612 B49A 324B 7EAD 6D80
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
<?php | |
declare(strict_types=1); | |
/* | |
* webhook-receiver.php | |
* Copyright (c) 2021 [email protected] | |
* | |
* This file is part of Firefly III (https://github.com/firefly-iii). | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU Affero General Public License as |
This is MySQL but should work as expected in other databases.
SELECT COUNT(transactions.id) AS transaction_count,
SUM(transactions.amount) AS total,
accounts.name
FROM transactions
LEFT JOIN transaction_journals
ON transactions.transaction_journal_id = transaction_journals.id
LEFT JOIN accounts
This page documents how Firefly III handles outgoing loans (liabilities). For example: you borrow money to friends and family. In Firefly III you select "I am owed".
In Firefly III v6.0 the way these liabilities are handled will change. This means change for you as well.
<?php | |
/** | |
* autosave.php | |
* Copyright (c) 2020 [email protected] | |
* | |
* This program is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU Affero General Public License as | |
* published by the Free Software Foundation, either version 3 of the | |
* License, or (at your option) any later version. | |
* |
These queries can help you get an overview of your expenses and income in 2023. Although Firefly III contains many useful reports, sometimes it's helpful to have a quick overview of what you want to know exactly. And although the year is not yet over, these queries can give you valuable insights already.
These queries group transactions by "expense account", so they will probably only work if you use the expense account to indicate the exact shop or brand you spent your money at.
This query shows your biggest single expenses this year, spent at one place you have not gone back to.