vault backup: 2026-03-07 12:19:22

This commit is contained in:
2026-03-07 12:19:22 +01:00
parent 747795e370
commit b729349eaa
203 changed files with 641 additions and 2349 deletions
@@ -1,16 +1,14 @@
---
status: Aktiv
tags:
- process/project
subtitle: Faktura-Quote 60 Prozent bis Ende des Jahres
reference:
- "[[Journal/cimt AG/2026|2026]]"
---
> [!abstract]- Project
> Goal:: [[Journal/cimt AG/2026|2026]]
> Progress:: `$= dv.view('project-progress', {file: 'Faktura-Quote 60 Prozent bis Ende des Jahres'})`
> Target:: `$= dv.view('project-target', {file: 'Faktura-Quote 60 Prozent bis Ende des Jahres'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Faktura-Quote 60 Prozent bis Ende des Jahres'})`
> Tasks:: `$= const aufgaben = dv.page('Faktura-Quote 60 Prozent bis Ende des Jahres').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
Faktura-Quote auf 60% heben bis Ende des Jahres (März-Nov)
@@ -25,35 +23,3 @@ subtitle: Faktura-Quote 60 Prozent bis Ende des Jahres
## Aufgaben
## 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
]
}));
```