Files
thpeetz-notes/Areas/cimt AG/Managed Service/Einarbeitung Managed Service Team.md
T
2026-02-17 17:35:32 +01:00

1.8 KiB

status, tags, subtitle
status tags subtitle
Aktiv
process/project
Einarbeitung Managed Service Team

[!abstract]- Project Goal:: Progress:: $= dv.view('project-progress', {file: 'Einarbeitung Managed Service Team'}) Target:: $= dv.view('project-target', {file: 'Einarbeitung Managed Service Team'}) Bar:: $= dv.view('project-progress-bar', {file: 'Einarbeitung Managed Service Team'}) Tasks:: $= const aufgaben = dv.page('Einarbeitung Managed Service Team').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

Resources

\\BERSN1FS2\Support\technik\kunde\KeePass\Outtasking.kdbx

Review questions

Aufgaben

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