vault backup: 2026-08-20 14:24:26
This commit is contained in:
Vendored
+4
-1
@@ -7,6 +7,9 @@
|
|||||||
"contract_end": "date",
|
"contract_end": "date",
|
||||||
"category": "multitext",
|
"category": "multitext",
|
||||||
"projects": "multitext",
|
"projects": "multitext",
|
||||||
"date": "date"
|
"date": "date",
|
||||||
|
"contract_start": "date",
|
||||||
|
"renewal_status": "multitext",
|
||||||
|
"auto_renewal": "checkbox"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,18 +1,23 @@
|
|||||||
---
|
---
|
||||||
vendor: true
|
vendor: true
|
||||||
status: active
|
status: active
|
||||||
category:
|
|
||||||
owner: Amadou
|
owner: Amadou
|
||||||
account_manager:
|
category:
|
||||||
annual_budget: 25,074.33
|
- search
|
||||||
current_spend:
|
annual_cost: 25,074.33
|
||||||
renewal_date:
|
billing_frequency: annual
|
||||||
|
contract_start: 2024-01-01
|
||||||
contract_end: 2026-12-31
|
contract_end: 2026-12-31
|
||||||
|
renewal_status:
|
||||||
|
- review-needed
|
||||||
|
auto_renewal: false
|
||||||
|
notice_deadline:
|
||||||
|
notice_days:
|
||||||
criticality: medium
|
criticality: medium
|
||||||
projects:
|
projects:
|
||||||
tags:
|
tags:
|
||||||
purchase order:
|
purchase order:
|
||||||
currency: CAD
|
currency: USD
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,42 @@
|
|||||||
|
|
||||||
|
|
||||||
|
## Upcoming Expiration
|
||||||
|
```dataview
|
||||||
|
TABLE
|
||||||
|
vendor AS "Vendor",
|
||||||
|
annual_cost AS "Annual Cost",
|
||||||
|
currency AS "Currency",
|
||||||
|
contract_end AS "Ends",
|
||||||
|
renewal_status AS "Renewal"
|
||||||
|
FROM "20 Work/Contracts"
|
||||||
|
WHERE status = "active"
|
||||||
|
AND contract_end >= date(today)
|
||||||
|
AND contract_end <= date(today) + dur(120 days)
|
||||||
|
SORT contract_end ASC
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Contract with notice deadline
|
||||||
|
```dataview
|
||||||
|
TABLE
|
||||||
|
vendor AS "Vendor",
|
||||||
|
notice_deadline AS "Notice Deadline",
|
||||||
|
contract_end AS "Contract End",
|
||||||
|
annual_cost AS "Annual Cost",
|
||||||
|
currency AS "Currency"
|
||||||
|
FROM "20 Work/Contracts"
|
||||||
|
WHERE status = "active"
|
||||||
|
AND notice_deadline
|
||||||
|
SORT notice_deadline ASC
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
## Portfolio by currency
|
||||||
|
```dataview
|
||||||
|
TABLE WITHOUT ID
|
||||||
|
currency AS "Currency",
|
||||||
|
sum(rows.annual_cost) AS "Annual Commitments"
|
||||||
|
FROM "20 Work/Contracts"
|
||||||
|
WHERE status = "active"
|
||||||
|
GROUP BY currency
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user