Files
thpeetz-notes/Areas/cimt AG/Managed Services/Einarbeitung Managed Services Team.md

68 lines
2.5 KiB
Markdown

---
tags:
- process/project
subtitle: Einarbeitung Managed Service Team
---
> [!abstract]- Project
> Goal::
> Progress:: `$= dv.view('project-progress', {file: 'Einarbeitung Managed Services Team'})`
> Target:: `$= dv.view('project-target', {file: 'Einarbeitung Managed Services Team'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Einarbeitung Managed Services Team'})`
> Tasks:: `$= const aufgaben = dv.page('Einarbeitung Managed Services 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
- https://bervl1grf:3000/
- https://gitea:3000/
- https://bersl1pv2:8006/#v1:0:=qemu%2F5113:4:::::7::
`\\BERSN1FS2\Support\technik\kunde\KeePass\Outtasking.kdbx`
## Review questions
## Aufgaben
- [x] Zugang Zammad einrichten #process/task [[Marcel Kuszak]] [start:: 2026-02-17] [completion:: 2026-02-18]
- [x] Schreibberechtigung für Confluence Bereich einrichten [[Christian Kiltz]] [start:: 2026-02-17] [completion:: 2026-02-18]
- [x] Zugang Proxmox einrichten [[Bastian Liesigk]] [start:: 2026-02-17] [completion:: 2026-02-18]
- [x] Zugang Grafana/Gitea einrichten [[Marcel Kuszak]] [start:: 2026-02-17] [completion:: 2026-02-18]
- [x] Zugang BERSN1FS2 einrichten [[Bastian Liesigk]] [completion:: 2026-02-18]
- [x] Liste der Kunden erstellen mit Status der Zugänge #process/task [start:: 2026-02-26] [scheduled:: 2026-02-27] [due:: 2026-02-27] [completion:: 2026-02-27]
## Offene Aufgaben
```dataviewjs
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
```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
]
}));
```