vault backup: 2026-06-18 23:57:12

This commit is contained in:
Thomas Peetz
2026-06-18 23:57:12 +02:00
parent 4eddfd5861
commit 07fa833514
31 changed files with 1021 additions and 469 deletions
+1 -2
View File
@@ -14,9 +14,8 @@ list from [[]] and !outgoing([[]]) and "Infos/Unternehmen"
```
## Kontakte
```dataview
TABLE rows.file.link AS Kollege, rows.ORG AS Firma, rows.ADR.WORK.LOCALITY as Standort, rows.X-MANAGER AS Manager
TABLE rows.file.link AS Kollege, rows.ORG AS Firma, rows.ADR[WORK].LOCALITY as Standort, rows.X-MANAGER AS Manager
FROM "Infos/Kontakte"
WHERE contains(ORG, "cimt")
GROUP BY ORG
+2 -2
View File
@@ -23,9 +23,9 @@ SORT location, X-MANAGER, name
## Ehemalige Kollegen
```dataview
TABLE company AS Firma, location AS Standort
TABLE ORG AS Firma, location AS Standort
FROM [[]] AND !outgoing([[]]) AND #process/contact
WHERE contains(X-FORMER-ORG, [[cimt consulting AG]])
WHERE contains(X-FORMER-ORG, "cimt consulting AG")
SORT location, manager, name
```
+1 -1
View File
@@ -16,7 +16,7 @@ SORT Locality, X-MANAGER, FN
## Ehemalige Kollegen
```dataview
TABLE FN AS "Full Name", name, ORG AS Firma, location AS Standort
TABLE FN AS "Full Name", ORG AS Firma, ADR.WORK.LOCALITY AS Standort
FROM [[]] AND !outgoing([[]]) AND #process/contact
WHERE contains(X-FORMER-ORG, [[cimt objects AG]])
SORT location, manager, name
+3 -3
View File
@@ -12,9 +12,9 @@ parent_company: "[[cimt AG]]"
## Kontakte
```dataview
TABLE location AS Standort, manager AS Vorgesetzter
TABLE ADR[WORK].LOCALITY AS Standort, X-MANAGER AS Vorgesetzter
FROM [[]] AND !outgoing([[]]) AND #process/contact
WHERE contains(company, [[cimt technology GmbH]])
WHERE contains(ORG, "cimt technology GmbH")
SORT location, manager
```
@@ -22,7 +22,7 @@ SORT location, manager
```dataview
TABLE company AS Firma, location AS Standort
FROM [[]] AND !outgoing([[]]) AND #process/contact
WHERE contains(former_company, [[cimt technology GmbH]])
WHERE contains(X-FORMER-ORG, [[cimt technology GmbH]])
SORT location, manager, name
```