https://github.com/hf/hledger.mk
hledger defaults for North Macedonia
https://github.com/hf/hledger.mk
Last synced: 5 months ago
JSON representation
hledger defaults for North Macedonia
- Host: GitHub
- URL: https://github.com/hf/hledger.mk
- Owner: hf
- Created: 2023-06-11T00:24:52.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-06-11T00:25:23.000Z (about 3 years ago)
- Last Synced: 2025-05-24T04:43:45.368Z (about 1 year ago)
- Size: 6.84 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hledger for North Macedonia
[hledger](https://hledger.org) is a Plain Text Accounting tool. This project
provides you with defaults such as a Chart of Accounts valid for use in North
Macedonia.
You have to know Macedonian to understand the chart. It is
[described](http://www.ujp.gov.mk/mk/regulativa/opis/72) by the Internal
Revenue Service.
All accounts have the form:
```
mk:::
```
For example, to declare a cash account, use:
```
include mk.journal
; Declare and alias the bank account number account for Macedonian denars
account mk:10:0:
alias cash_mkd_=mk:10:0:
; Declare the banking expenses account for the bank
account mk:44:6:
alias bank_expenses_=mk:44:6:
; Banking liabilities fall under general service liabilities in North Macedonia
account general_liabilities_mk=mk:22:0
```
To record the liability and expense entries for paying the bank account
commisions, you can do something like:
```
; Liability to pay comission starts each month the bank account is active
2023-01-01 Bank account comission
bank_expenses_ MKD
general_liabilities_mk
; Liability is closed once the month ends
2023-02-01 Paid bank account comission
general_liabilities_mk MKD
cash_mkd_
```
## License
Public domain. Go wild.