vault backup: 2026-03-08 02:22:41

This commit is contained in:
2026-03-08 02:22:41 +01:00
parent 03d3b310a8
commit 6b934edc3a
73 changed files with 65 additions and 223 deletions
@@ -0,0 +1,51 @@
---
Steuerbescheid:
Aufbewahrung:
tags:
- process/project
subtitle: Steuererklärung 2025
---
## Project Info
## Thoughts
```datacorejsx
return function View() {
const homeoffice = dc.useQuery('@page and path("Journal/cimt AG/2025") and work_home = true');
const office = dc.useQuery('@page and path("Journal/cimt AG/2025") and work_office = true');
return <div>
<p>Tage im HomeOffice {homeoffice.length}</p>
<p>Tage im Büro {office.length}</p>
</div>;
}
```
## Resources
## Review questions
## Aufgaben
- [x] Lohnsteuerbescheinigung Thomas [start:: 2026-01-28] [completion:: 2026-01-29]
- [ ] Lohnsteuerbescheinigung Claudia [start:: 2026-03-01] [completion:: 2026-05-20]
- [x] Nebenkostenabrechnung wegen haushaltsnaher Dienstleistungen #process/task [start:: 2026-01-27] [scheduled:: 2026-01-28] [completion:: 2026-02-05]
- [ ] Aufwendungen für Werbungskosten (Entfernung für Kilometerpauschale) [start:: 2026-01-01] [scheduled:: 2026-03-03]
- [ ] Bescheid erhalten [start:: 2026-06-01]
## 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
]
}));
```