feat(import): resolve color variety ID mappings mismatch, support unnamed parents in virtual litters, and implement SaleContract updates

This commit is contained in:
2026-06-21 21:57:40 +02:00
parent b83e96f552
commit e460cd5905
29 changed files with 3783 additions and 67 deletions

View File

@@ -8,7 +8,7 @@
* serverseitig in EINER Transaktion: .docx erzeugen + speichern, Vertrag
* anlegen, Tiere auf „Abgegeben“ stellen (Abnehmer + Abgabedatum).
*/
import { useMemo, useState } from 'react'
import { useEffect, useMemo, useState } from 'react'
import { Link, useNavigate, useSearchParams } from 'react-router-dom'
import { de } from '../strings/de'
import { listGerbils } from '../api/gerbils'
@@ -16,6 +16,7 @@ import { createContact, listContactsPaged } from '../api/contacts'
import { contractFileUrl, createContract, type SaleContract } from '../api/contracts'
import { getBreederProfile, isBreederProfileComplete } from '../api/settings'
import { listColorVarieties } from '../api/lookups'
import { listGerbilPhotos, photoSrc, profilePhoto } from '../api/photos'
import { useApi, useMutation } from '../hooks/useApi'
import { formatDate, genderLabel } from '../format/labels'
import './vertragWizard.css'
@@ -110,6 +111,11 @@ export default function VertragWizardPage() {
return next
})
/* Vertragsfoto je Tier: GerbilId → PhotoId ('' = bewusst kein Foto). */
const [animalPhotos, setAnimalPhotos] = useState<Record<string, string>>({})
const setAnimalPhoto = (gerbilId: string, photoId: string) =>
setAnimalPhotos((m) => ({ ...m, [gerbilId]: photoId }))
/* ── Schritt 3: Preis & Datum ── */
const [priceText, setPriceText] = useState('')
const [handoverDate, setHandoverDate] = useState(todayIso())
@@ -127,6 +133,12 @@ export default function VertragWizardPage() {
price: parsePrice(priceText)!,
handoverDate,
contractDate: contractDate || null,
// nur ausgewählte Tiere mit tatsächlich gewähltem Foto übermitteln
animalPhotos: Object.fromEntries(
[...selectedIds]
.map((id) => [id, animalPhotos[id]] as const)
.filter(([, pid]) => Boolean(pid)),
),
}),
)
async function onGenerate() {
@@ -339,6 +351,13 @@ export default function VertragWizardPage() {
.join(' · ')}
</span>
</label>
{selectedIds.has(g.id) && (
<ContractPhotoPicker
gerbilId={g.id}
chosen={animalPhotos[g.id]}
onChange={(photoId) => setAnimalPhoto(g.id, photoId)}
/>
)}
</li>
))}
</ul>
@@ -450,3 +469,57 @@ export default function VertragWizardPage() {
</section>
)
}
/**
* Foto-Auswahl je Tier für den Vertrag. Lädt die Tierfotos lazy; Standard ist
* das Profilfoto (erstes nach SortOrder). '' = bewusst „Kein Foto“.
* Rendert nichts, wenn das Tier keine Fotos hat.
*/
function ContractPhotoPicker({
gerbilId,
chosen,
onChange,
}: {
gerbilId: string
chosen: string | undefined
onChange: (photoId: string) => void
}) {
const t = de.pages.vertraege.wizard
const photos = useApi(() => listGerbilPhotos(gerbilId), [gerbilId])
const list = useMemo(() => photos.data ?? [], [photos.data])
// Sobald Fotos da sind und noch nichts entschieden ist: Profilfoto vorauswählen.
useEffect(() => {
if (list.length > 0 && chosen === undefined) {
const p = profilePhoto(list)
if (p) onChange(p.id)
}
}, [list, chosen, onChange])
if (photos.loading || list.length === 0) return null
return (
<div className="contract-photopick">
<span className="contract-photopick__label">{t.photoLabel}</span>
<div className="contract-photopick__thumbs">
<button
type="button"
className={`contract-photopick__thumb contract-photopick__thumb--none${chosen === '' ? ' is-selected' : ''}`}
onClick={() => onChange('')}
>
{t.photoNone}
</button>
{list.map((p) => (
<button
key={p.id}
type="button"
className={`contract-photopick__thumb${chosen === p.id ? ' is-selected' : ''}`}
onClick={() => onChange(p.id)}
>
<img src={photoSrc(p)} alt={p.caption ?? ''} />
</button>
))}
</div>
</div>
)
}