--- 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

Tage im HomeOffice {homeoffice.length}

Tage im Büro {office.length}

; } ``` ## Resources ## Review questions ## Aufgaben - [x] Lohnsteuerbescheinigung Thomas [start:: 2026-01-28] [completion:: 2026-01-29] - [ ] Lohnsteuerbescheinigung Claudia [start:: 2026-06-08] [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-06-08] - [ ] Bescheid erhalten [start:: 2026-06-08] ## 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 ] })); ```