58 lines
1.9 KiB
Markdown
58 lines
1.9 KiB
Markdown
---
|
|
Steuerbescheid: 2026-02-14
|
|
Aufbewahrung: 2036-12-31
|
|
tags:
|
|
- process/project
|
|
subtitle: Steuererklärung 2024
|
|
---
|
|
|
|
> [!project]- Steuererklärung
|
|
> Goal:: [[Steuererklärung]]
|
|
> Progress:: `$= dv.view('project-progress', {file: 'Steuererklärung 2024'})`
|
|
> Target:: `$= dv.view('project-target', {file: 'Steuererklärung 2024'})`
|
|
> Bar:: `$= dv.view('project-progress-bar', {file: 'Steuererklärung 2024'})`
|
|
> Tasks:: `$= const aufgaben = dv.page('Steuererklärung 2024').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }`
|
|
|
|
## Project Info
|
|
|
|
## Thoughts
|
|
|
|
```datacorejsx
|
|
return function View() {
|
|
const pages = dc.useQuery('@page and path("Journal/cimt AG/2024") and work_home = true');
|
|
return <p>Tage im HomeOffice {pages.length}</p>;
|
|
}
|
|
```
|
|
Büro 49
|
|
Homeoffice 167
|
|
|
|
## Resources
|
|
|
|
|
|
## Review questions
|
|
|
|
|
|
## Aufgaben
|
|
|
|
- [x] Lohnsteuerbescheinigung Thomas [start:: 2025-01-01] [completion:: 2025-05-20]
|
|
- [x] Lohnsteuerbescheinigung Claudia [start:: 2025-03-01] [completion:: 2025-05-20]
|
|
- [x] Nebenkostenabrechnung wegen haushaltsnaher Dienstleistungen [start:: 2024-11-10] [completion:: 2025-09-23]
|
|
- [x] Aufwendungen für Werbungskosten (Entfernung für Kilometerpauschale) [start:: 2025-01-01] [scheduled:: 2025-09-23] [completion:: 2025-09-23]
|
|
- [x] Bescheid erhalten #process/task [start:: 2025-10-30] [completion:: 2026-02-11]
|
|
|
|
## Aufgaben
|
|
```dataviewjs
|
|
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));
|
|
|
|
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
|
|
const page = dv.page(p.path);
|
|
const tasks = page.file.tasks;
|
|
return [
|
|
page.file.link,
|
|
page.status,
|
|
tasks.where(t => t.fullyCompleted === true).length,
|
|
tasks.length
|
|
]
|
|
}));
|
|
```
|