Block a user
Generate ID from name for eForms
tedective_etl/ted_to_ocds/transform.py
Lines 527 to 535 in 0f8fb40017
supplier = ocds.Organization( |
|
id = str(uuid.uuid4()), |
|
roles={"supplier"} |
|
) |
|
supplier.name = name |
|
supplier.identifier = identifier |
|
supplier.address = address |
|
supplier.contactPoint = contactPoint |
|
supplier.details = details |
675b5eedd1
chore: update
ff2318381b
fix: add env var to api systemd service config
48ccf69adf
Merge pull request 'feat: adapted UI to allow date filtering' (#79) from feature/date-filter-adaptation into main
a281bbc7ff
feat: adapted UI to allow date filtering
feat: adapted UI to allow date filtering
713a0580b6
Merge pull request 'Week 3/4 API' (#22) from testing into main
1bf389852f
chore: remove ide specific files
04f19c35af
Merge 'development' into 'testing'
ebea3ce1ff
Merge pull request 'fix: trigger the workflow' (#21) from feature/tests into development
78f687dc13
Merge branch 'development' into feature/tests
dc41b09642
Merge pull request 'Week 3/4 ETL' (#35) from testing into main
b5de4a33f4
Merge'development' into 'testing
5216bd5fd0
Merge pull request 'Implemented eForms' (#34) from feature/eforms into development
5f6aea98d4
feat: added test case for eform
b73439d01d
chore: merge development into feature/eforms
Allow filtering by date (YYYY-MM)
This is probably the shadcn code we want to use:
from https://github.com/shadcn-ui/ui/issues/885#issuecomment-2059600641:
"use client"
import * as React from "react"
import * as…
Week 3 - API
Hey @micgor32,
so what happens now is that all the data until 2017-01
is requested but the limit of the kuzudb query hits. The current default is 400, see https://git.fsfe.org/TEDective/api/s…