Files
thpeetz-notes/Areas/cimt AG/Managed Services/Kunden/Hermann Hartje KG.md
T
2026-03-16 15:45:07 +01:00

1.1 KiB

tags
tags
cimt/customer
cimt/managed_services

Aufgaben

  • Einrichtung Sophos Client auf BERVW1HHA und BERVW2HHA #process/task [start:: 2026-03-03] [scheduled:: 2026-03-16] [completion:: 2026-03-16]

Offene Aufgaben

const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length != dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);

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

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