Files
2026-06-01 15:44:36 +02:00

1.4 KiB

Steuerbescheid, Aufbewahrung, tags, subtitle
Steuerbescheid Aufbewahrung tags subtitle
process/project
Steuererklärung 2025

Project Info

Thoughts

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

  • Lohnsteuerbescheinigung Thomas [start:: 2026-01-28] [completion:: 2026-01-29]
  • Lohnsteuerbescheinigung Claudia [start:: 2026-06-08] [completion:: 2026-05-20]
  • 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

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
	]
}));