62 lines
1.5 KiB
Markdown
62 lines
1.5 KiB
Markdown
---
|
|
tags:
|
|
- process/management
|
|
---
|
|
## Team
|
|
```dataview
|
|
TABLE ADR[WORK].LOCALITY AS Standort
|
|
FROM [[]] AND !outgoing([[]]) AND "Infos/Kontakte"
|
|
SORT file.name DESC
|
|
LIMIT 20
|
|
```
|
|
|
|
## Links
|
|
- https://cimt-objects.zammad.com
|
|
|
|
## 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'));
|
|
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
|
|
]
|
|
}));
|
|
```
|
|
|
|
## Termine
|
|
|
|
>[!info]- Daily
|
|
>![[Managed Services Team Daily#Termine]]
|
|
>
|
|
|
|
```dataview
|
|
LIST
|
|
FROM [[]] AND !outgoing([[]]) AND "Journal"
|
|
SORT file.name DESC
|
|
LIMIT 20
|
|
```
|
|
## Ideen
|