Compare commits
11 Commits
ecd7ad2658
...
feature/ge
| Author | SHA1 | Date | |
|---|---|---|---|
| d5c7b77e7e | |||
| bff25b4683 | |||
| aa1d22cec7 | |||
| f7e97ad7a2 | |||
| 7d552d33cd | |||
| 4d7333b714 | |||
| 62b07597f5 | |||
| 5ce35af813 | |||
| 23b6dad303 | |||
| e9eef5cce6 | |||
| 299c038449 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -137,3 +137,6 @@ GerbilManagerWebAPI/photo-storage/
|
|||||||
|
|
||||||
# AR-3: Data Protection key ring (dev-only ephemeral keys) — never commit
|
# AR-3: Data Protection key ring (dev-only ephemeral keys) — never commit
|
||||||
GerbilManagerWebAPI/.data-protection-keys/
|
GerbilManagerWebAPI/.data-protection-keys/
|
||||||
|
|
||||||
|
# node_modules — never commit, installed locally per npm install
|
||||||
|
node_modules/
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ namespace GerbilManagerWebAPI.Migrations
|
|||||||
UPDATE ""Gerbils"" SET ""Status"" = 'GivenAway'
|
UPDATE ""Gerbils"" SET ""Status"" = 'GivenAway'
|
||||||
WHERE ""Status"" != 'Deceased'
|
WHERE ""Status"" != 'Deceased'
|
||||||
AND (""ReceiverContactId"" IS NOT NULL
|
AND (""ReceiverContactId"" IS NOT NULL
|
||||||
OR EXISTS (SELECT 1 FROM ""SaleContractAnimals"" WHERE ""GerbilId"" = ""Gerbils"".""Id""));");
|
OR EXISTS (SELECT 1 FROM ""SaleContractAnimal"" WHERE ""GerbilId"" = ""Gerbils"".""Id""));");
|
||||||
|
|
||||||
// 4) Age > 7 years (presumed dead) → Deceased, but NOT overriding GivenAway.
|
// 4) Age > 7 years (presumed dead) → Deceased, but NOT overriding GivenAway.
|
||||||
migrationBuilder.Sql(@"
|
migrationBuilder.Sql(@"
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ _Quelldatei = die Stammbaum-Datei(en) in `C:\Users\gulum\dev\Sttammbäume\`, in
|
|||||||
**B) Gencode-Konflikt** (+ ggf. Sterbedatum):
|
**B) Gencode-Konflikt** (+ ggf. Sterbedatum):
|
||||||
| Tier | Konflikt — was stimmt? | Quelldatei(en) |
|
| Tier | Konflikt — was stimmt? | Quelldatei(en) |
|
||||||
|---|---|---|
|
|---|---|---|
|
||||||
| Milon v.d. K.C. (*27.11.2014) | A-Locus: **Aa** ↔ **aa** | Stammbaum von **South Dakota**.xlsx · von **Tennessee**.xlsx |
|
| ~~Milon v.d. K.C. (*27.11.2014)~~ ✅ | A-Locus **Aa** (erledigt — Julian 2026-06-07: Aa gewinnt gg. aa) | — |
|
||||||
| ~~Percy of little runners (*16.12.2017)~~ ✅ | P-Locus **Pp** (erledigt) | — |
|
| ~~Percy of little runners (*16.12.2017)~~ ✅ | P-Locus **Pp** (erledigt) | — |
|
||||||
| ~~Iwana of little runners (*02.10.2018)~~ ✅ | P-Locus **Pp** (erledigt) | — |
|
| ~~Iwana of little runners (*02.10.2018)~~ ✅ | P-Locus **Pp** (erledigt) | — |
|
||||||
| ~~Sokrates v.d. K.C. (*14.12.2015)~~ ✅ | **D-** + Sterbedatum **20.05.2019** (erledigt) | — |
|
| ~~Sokrates v.d. K.C. (*14.12.2015)~~ ✅ | **D-** + Sterbedatum **20.05.2019** (erledigt) | — |
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
/** LITTER-JUVENILE-DETAILS: Jungtier-Felder (Farbschlag/Abgabe/Verstorben) im Wurf-Detail. */
|
/** LITTER-JUVENILE-DETAILS + JUVENILE-AVATARS: Jungtier-Felder und Foto-Avatare im Wurf-Detail. */
|
||||||
import { de, expect, skipUnlessMock, test } from './fixtures'
|
import { de, expect, skipUnlessMock, test } from './fixtures'
|
||||||
|
|
||||||
const t = de.pages.litters
|
const t = de.pages.litters
|
||||||
@@ -28,3 +28,18 @@ test('Jungtier-Liste zeigt Farbschlag, Abgabedatum, Abnehmer, Todesdatum und Tod
|
|||||||
await expect(bennyCard).toContainText(t.detail.juvenileFields.dateOfDeath)
|
await expect(bennyCard).toContainText(t.detail.juvenileFields.dateOfDeath)
|
||||||
await expect(bennyCard).toContainText(`${t.detail.juvenileFields.causeOfDeath}: Altersschwäche`)
|
await expect(bennyCard).toContainText(`${t.detail.juvenileFields.causeOfDeath}: Altersschwäche`)
|
||||||
})
|
})
|
||||||
|
|
||||||
|
test('JUVENILE-AVATARS: Pippa zeigt Foto-Avatar, Benny zeigt GerbilIcon', async ({ page }) => {
|
||||||
|
skipUnlessMock()
|
||||||
|
await page.goto('/wuerfe/w-kruemel')
|
||||||
|
await expect(page.getByRole('heading', { name: 'Wurf K' })).toBeVisible()
|
||||||
|
|
||||||
|
// Pippa hat profilePhotoUrl → <img.juvenile-photo__avatar> sichtbar
|
||||||
|
const pippaCard = page.getByRole('link', { name: /Pippa/ })
|
||||||
|
await expect(pippaCard.locator('.juvenile-photo__avatar')).toBeVisible()
|
||||||
|
|
||||||
|
// Benny hat kein Foto → kein img, SVG-Icon (GerbilIcon) sichtbar
|
||||||
|
const bennyCard = page.getByRole('link', { name: /Benny/ })
|
||||||
|
await expect(bennyCard.locator('.juvenile-photo__avatar')).not.toBeVisible()
|
||||||
|
await expect(bennyCard.locator('svg')).toBeVisible()
|
||||||
|
})
|
||||||
|
|||||||
@@ -153,11 +153,13 @@ export function seedDb(): MockDb {
|
|||||||
notes: 'neugieriger Entdecker',
|
notes: 'neugieriger Entdecker',
|
||||||
},
|
},
|
||||||
// LITTER-JUVENILE-DETAILS: Jungtiere für Wurf K mit Zusatzinfos.
|
// LITTER-JUVENILE-DETAILS: Jungtiere für Wurf K mit Zusatzinfos.
|
||||||
|
// JUVENILE-AVATARS: Pippa hat profilePhotoUrl (1×1-PNG data-URI) → Avatar-Img sichtbar.
|
||||||
{
|
{
|
||||||
...gerbil('pup-abgabe', 'Pippa', 'female', '2025-03-12', 'w-kruemel', 'cv-gold'),
|
...gerbil('pup-abgabe', 'Pippa', 'female', '2025-03-12', 'w-kruemel', 'cv-gold'),
|
||||||
status: 'GivenAway' as const,
|
status: 'GivenAway' as const,
|
||||||
goHomeDate: '2025-05-01',
|
goHomeDate: '2025-05-01',
|
||||||
receiverContactId: 'con-huber',
|
receiverContactId: 'con-huber',
|
||||||
|
profilePhotoUrl: 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNk+M9QDwADhgGAWjR9awAAAABJRU5ErkJggg==',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
...gerbil('pup-verstorben', 'Benny', 'male', '2025-03-12', 'w-kruemel', null),
|
...gerbil('pup-verstorben', 'Benny', 'male', '2025-03-12', 'w-kruemel', null),
|
||||||
|
|||||||
@@ -21,15 +21,17 @@ export default function GerbilIcon({ size = '1em', style, className }: Props) {
|
|||||||
aria-label="Rennmaus"
|
aria-label="Rennmaus"
|
||||||
>
|
>
|
||||||
{/* body — sitting upright */}
|
{/* body — sitting upright */}
|
||||||
<path d="M40 14c6 0 11 5 11 12 0 4-2 7-2 11 0 10-6 16-15 16-8 0-14-6-14-15 0-13 9-24 20-24z" />
|
<path d="M 34 23 C 38 20, 44 21, 46 25 C 47 27, 45 30, 41 31 C 38 32, 40 38, 40 42 C 40 48, 36 51, 31 52 C 25 52, 21 47, 21 40 C 21 31, 27 25, 34 23 Z" />
|
||||||
{/* ear */}
|
{/* ears */}
|
||||||
<circle cx="46" cy="15" r="5" />
|
<path d="M 36 22 Q 33 13 39 11 Q 42 13 39 21 Z" />
|
||||||
{/* hind paw */}
|
<path d="M 32 23 Q 30 15 35 13 Q 37 15 35 22 Z" opacity="0.6" />
|
||||||
<ellipse cx="24" cy="52" rx="9" ry="3.5" />
|
|
||||||
{/* long curved tail with tuft */}
|
|
||||||
<path d="M16 51c-7 1-13-2-15-9-1-4 0-8 3-10 1 3 1 6 3 8 3 3 7 4 11 4z" />
|
|
||||||
{/* front paw */}
|
{/* front paw */}
|
||||||
<path d="M30 45c3 0 5 1 5 4-3 1-6 1-7-2 0-1 1-2 2-2z" />
|
<path d="M 41 33 Q 46 33 46 36 Q 44 38 41 35 Z" />
|
||||||
|
{/* hind paw */}
|
||||||
|
<path d="M 21 49 C 19 53, 23 55, 30 55 C 33 55, 34 52, 30 50 Z" />
|
||||||
|
{/* tail and tuft */}
|
||||||
|
<path d="M 21 47 C 14 51, 9 46, 8 41 C 7 35, 11 27, 16 22 C 17 21, 18 22, 17 23 C 13 28, 10 35, 11 40 C 12 44, 15 47, 21 44 Z" />
|
||||||
|
<path d="M 16 22 C 16 16, 13 11, 16 7 C 20 3, 22 10, 19 16 C 18 19, 17 21, 16 22 Z" />
|
||||||
</svg>
|
</svg>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -381,14 +381,13 @@ function PedigreeCard({
|
|||||||
const g = node.gerbil
|
const g = node.gerbil
|
||||||
const chip = farbschlag ? chipColorFor(farbschlag) : null
|
const chip = farbschlag ? chipColorFor(farbschlag) : null
|
||||||
const dob = g.dateOfBirth ? formatDate(g.dateOfBirth) : null
|
const dob = g.dateOfBirth ? formatDate(g.dateOfBirth) : null
|
||||||
const [imgError, setImgError] = useState(false)
|
const [failedUrl, setFailedUrl] = useState<string | null>(null)
|
||||||
useEffect(() => setImgError(false), [g.id])
|
const rawUrl = g.profilePhotoUrl
|
||||||
const photoUrl =
|
? /^(https?:|data:|\/\/)/.test(g.profilePhotoUrl)
|
||||||
!imgError && g.profilePhotoUrl
|
? g.profilePhotoUrl
|
||||||
? /^(https?:|data:|\/\/)/.test(g.profilePhotoUrl)
|
: `${API_BASE_URL}${g.profilePhotoUrl}`
|
||||||
? g.profilePhotoUrl
|
: null
|
||||||
: `${API_BASE_URL}${g.profilePhotoUrl}`
|
const photoUrl = rawUrl !== failedUrl ? rawUrl : null
|
||||||
: null
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={isRoot ? 'pedigree-card pedigree-card--root' : 'pedigree-card'}
|
className={isRoot ? 'pedigree-card pedigree-card--root' : 'pedigree-card'}
|
||||||
@@ -402,7 +401,7 @@ function PedigreeCard({
|
|||||||
src={photoUrl}
|
src={photoUrl}
|
||||||
alt={g.name || ''}
|
alt={g.name || ''}
|
||||||
className="pedigree-card__avatar"
|
className="pedigree-card__avatar"
|
||||||
onError={() => setImgError(true)}
|
onError={() => setFailedUrl(rawUrl)}
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<GerbilIcon size="1.6rem" aria-hidden="true" />
|
<GerbilIcon size="1.6rem" aria-hidden="true" />
|
||||||
|
|||||||
@@ -1,15 +1,62 @@
|
|||||||
import { useCallback, useMemo } from 'react'
|
import { useCallback, useMemo, useState } from 'react'
|
||||||
import { Link, useParams } from 'react-router-dom'
|
import { Link, useParams } from 'react-router-dom'
|
||||||
import { de } from '../strings/de'
|
import { de } from '../strings/de'
|
||||||
import { getLitter } from '../api/litters'
|
import { getLitter } from '../api/litters'
|
||||||
import { getGerbil, listGerbils } from '../api/gerbils'
|
import { getGerbil, listGerbils } from '../api/gerbils'
|
||||||
import { listColorVarieties, listContacts } from '../api/lookups'
|
import { listColorVarieties, listContacts } from '../api/lookups'
|
||||||
|
import { API_BASE_URL } from '../api/client'
|
||||||
import { condition } from '../api/gridify'
|
import { condition } from '../api/gridify'
|
||||||
|
import { type Gerbil } from '../api/types'
|
||||||
import { useApi } from '../hooks/useApi'
|
import { useApi } from '../hooks/useApi'
|
||||||
import { formatDate, genderLabel } from '../format/labels'
|
import { formatDate, genderLabel } from '../format/labels'
|
||||||
import { isValidGenotype } from '../format/genotypeText'
|
import { isValidGenotype } from '../format/genotypeText'
|
||||||
import { breed, fromDisplayString, genotypeToFarbschlag, UNKNOWN_FARBSCHLAG, type BreedingResult } from '../genetics'
|
import { breed, fromDisplayString, genotypeToFarbschlag, UNKNOWN_FARBSCHLAG, type BreedingResult } from '../genetics'
|
||||||
import BreedingResultView from '../components/BreedingResultView'
|
import BreedingResultView from '../components/BreedingResultView'
|
||||||
|
import GerbilIcon from '../components/GerbilIcon'
|
||||||
|
import './wuerfe.css'
|
||||||
|
|
||||||
|
type JuvenileFields = (typeof de.pages.litters.detail.juvenileFields)
|
||||||
|
|
||||||
|
function JuvenileCard({ g, farbe, receiver, tJf }: {
|
||||||
|
g: Gerbil
|
||||||
|
farbe: string | null
|
||||||
|
receiver: string | null
|
||||||
|
tJf: JuvenileFields
|
||||||
|
}) {
|
||||||
|
const [failedUrl, setFailedUrl] = useState<string | null>(null)
|
||||||
|
const rawUrl = g.profilePhotoUrl
|
||||||
|
? /^(https?:|data:|\/\/)/.test(g.profilePhotoUrl)
|
||||||
|
? g.profilePhotoUrl
|
||||||
|
: `${API_BASE_URL}${g.profilePhotoUrl}`
|
||||||
|
: null
|
||||||
|
const photoUrl = rawUrl !== failedUrl ? rawUrl : null
|
||||||
|
|
||||||
|
return (
|
||||||
|
<Link to={`/rennmaeuse/${g.id}`} className="gerbil-card gerbil-card--with-photo">
|
||||||
|
<div className="juvenile-photo">
|
||||||
|
{photoUrl ? (
|
||||||
|
<img
|
||||||
|
src={photoUrl}
|
||||||
|
alt={g.name || ''}
|
||||||
|
className="juvenile-photo__avatar"
|
||||||
|
onError={() => setFailedUrl(rawUrl)}
|
||||||
|
/>
|
||||||
|
) : (
|
||||||
|
<GerbilIcon size="1.4rem" aria-hidden="true" />
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
<div className="juvenile-body">
|
||||||
|
<span className="gerbil-card__name">{g.name}</span>
|
||||||
|
<span className="gerbil-card__meta">{genderLabel(g.gender)}</span>
|
||||||
|
{farbe && <span className="gerbil-card__meta">{tJf.colorVariety}: {farbe}</span>}
|
||||||
|
{g.goHomeDate && <span className="gerbil-card__meta">{tJf.goHomeDate}: {formatDate(g.goHomeDate)}</span>}
|
||||||
|
{receiver && <span className="gerbil-card__meta">{tJf.receiver}: {receiver}</span>}
|
||||||
|
{g.dateOfDeath && <span className="gerbil-card__meta">{tJf.dateOfDeath}: {formatDate(g.dateOfDeath)}</span>}
|
||||||
|
{g.causeOfDeath && <span className="gerbil-card__meta">{tJf.causeOfDeath}: {g.causeOfDeath}</span>}
|
||||||
|
</div>
|
||||||
|
</Link>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
export default function WurfDetailPage() {
|
export default function WurfDetailPage() {
|
||||||
const t = de.pages.litters
|
const t = de.pages.litters
|
||||||
@@ -158,19 +205,11 @@ export default function WurfDetailPage() {
|
|||||||
<ul className="card-list">
|
<ul className="card-list">
|
||||||
{(juveniles.data?.items ?? []).map((g) => {
|
{(juveniles.data?.items ?? []).map((g) => {
|
||||||
const farbe = farbschlagOf(g)
|
const farbe = farbschlagOf(g)
|
||||||
const receiver = g.receiverContactId ? contactNameById.get(g.receiverContactId) : null
|
const receiver = g.receiverContactId ? contactNameById.get(g.receiverContactId) ?? null : null
|
||||||
const tJf = t.detail.juvenileFields
|
const tJf = t.detail.juvenileFields
|
||||||
return (
|
return (
|
||||||
<li key={g.id}>
|
<li key={g.id}>
|
||||||
<Link to={`/rennmaeuse/${g.id}`} className="gerbil-card">
|
<JuvenileCard g={g} farbe={farbe} receiver={receiver} tJf={tJf} />
|
||||||
<span className="gerbil-card__name">{g.name}</span>
|
|
||||||
<span className="gerbil-card__meta">{genderLabel(g.gender)}</span>
|
|
||||||
{farbe && <span className="gerbil-card__meta">{tJf.colorVariety}: {farbe}</span>}
|
|
||||||
{g.goHomeDate && <span className="gerbil-card__meta">{tJf.goHomeDate}: {formatDate(g.goHomeDate)}</span>}
|
|
||||||
{receiver && <span className="gerbil-card__meta">{tJf.receiver}: {receiver}</span>}
|
|
||||||
{g.dateOfDeath && <span className="gerbil-card__meta">{tJf.dateOfDeath}: {formatDate(g.dateOfDeath)}</span>}
|
|
||||||
{g.causeOfDeath && <span className="gerbil-card__meta">{tJf.causeOfDeath}: {g.causeOfDeath}</span>}
|
|
||||||
</Link>
|
|
||||||
</li>
|
</li>
|
||||||
)
|
)
|
||||||
})}
|
})}
|
||||||
|
|||||||
34
gerbil-manager-web/src/pages/wuerfe.css
Normal file
34
gerbil-manager-web/src/pages/wuerfe.css
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
/* JUVENILE-AVATARS: photo avatar to the left of each juvenile card. */
|
||||||
|
.gerbil-card--with-photo {
|
||||||
|
display: flex;
|
||||||
|
align-items: flex-start;
|
||||||
|
gap: 0.75rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.juvenile-body {
|
||||||
|
min-width: 0;
|
||||||
|
flex: 1;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 0.2rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
.juvenile-photo {
|
||||||
|
flex: none;
|
||||||
|
width: 36px;
|
||||||
|
height: 36px;
|
||||||
|
border-radius: 50%;
|
||||||
|
overflow: hidden;
|
||||||
|
background: var(--color-accent-soft);
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
align-self: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.juvenile-photo__avatar {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
@@ -102,9 +102,9 @@
|
|||||||
{
|
{
|
||||||
"name": "Skarlett von den Kleinen Chaoten",
|
"name": "Skarlett von den Kleinen Chaoten",
|
||||||
"dob": "14.07.2013",
|
"dob": "14.07.2013",
|
||||||
"decision": "death date = 17.04.2016 (the '2018' variant was wrong — it had leaked as '/ +2018' into the genotype field; parse-leak already fixed in IMPORT-POLISH)",
|
"decision": "birth 2013 + 4 years = death year 2017, no exact date → year-only convention (01.01.2017). Previous entry (17.04.2016) was wrong.",
|
||||||
"dateOfDeath": "17.04.2016",
|
"dateOfDeath": "01.01.2017",
|
||||||
"source": "Julian 2026-06-07 — HUMANQUESTION D6"
|
"source": "Julian 2026-06-07 — HUMANQUESTION D7 (final Skarlett resolution)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Kazu von den Kleinen Chaoten",
|
"name": "Kazu von den Kleinen Chaoten",
|
||||||
@@ -166,10 +166,10 @@
|
|||||||
{
|
{
|
||||||
"name": "Max von Privat",
|
"name": "Max von Privat",
|
||||||
"dob": "01.02.2013",
|
"dob": "01.02.2013",
|
||||||
"decision": "Genotyp von der Züchterin; Todesjahr 2014 (Jahr-only — Konvention mit Julian zu klären, deathYear NICHT als dateOfDeath gesetzt)",
|
"decision": "Genotyp von der Züchterin bestätigt (D-=D-, P=PP); Todesjahr 2014 (kein genaues Datum → Jahr-only-Konvention 01.01.2014). Reject 4 on-file-Varianten: 04.02.2016 / 04.03.2016 / 2014-raw / 30.12.2015.",
|
||||||
"genotype": "aa c[chm]c[chm] D- EE GG PP spsp",
|
"genotype": "aa c[chm]c[chm] D- EE GG PP spsp",
|
||||||
"_deathYear_pending": 2014,
|
"dateOfDeath": "01.01.2014",
|
||||||
"source": "Julian/Züchterin 2026-06-07 — HUMANQUESTION D7 (Jahr-only-Tod offen)"
|
"source": "Julian/Züchterin 2026-06-07 — HUMANQUESTION D7 (resolved)"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Isa of Golden Lights",
|
"name": "Isa of Golden Lights",
|
||||||
@@ -198,6 +198,21 @@
|
|||||||
"decision": "Sterbedatum von der Züchterin; bestätigt = 'von PZ Karl' (nicht 'Sunny Sky of Fiomi')",
|
"decision": "Sterbedatum von der Züchterin; bestätigt = 'von PZ Karl' (nicht 'Sunny Sky of Fiomi')",
|
||||||
"dateOfDeath": "30.04.2018",
|
"dateOfDeath": "30.04.2018",
|
||||||
"source": "Julian/Züchterin 2026-06-07 — HUMANQUESTION D7 (Nachtrag)"
|
"source": "Julian/Züchterin 2026-06-07 — HUMANQUESTION D7 (Nachtrag)"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Dakota of sweet little mouse",
|
||||||
|
"dob": "30.01.2015",
|
||||||
|
"decision": "Genotyp von Julian/Züchterin: A-Locus=Aa, P-Locus=pp, Sp-Locus=Spsp (offene Loci); übrige bestätigt.",
|
||||||
|
"genotype": "Aa CC Dd Ee Gg pp Spsp",
|
||||||
|
"source": "Julian/Züchterin 2026-06-07 — HUMANQUESTION D7"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Banjo of Fiomi",
|
||||||
|
"dob": "06.07.2015",
|
||||||
|
"decision": "E-Locus Korrektur: Julian — 'Goldfuchs Starkschecke, nicht Gold Starkschecke' → E-Locus muss ee sein, nicht E-. Extract hatte AA CC DD E- Gg pp Spsp [WP]; korrigiert zu ee (Goldfuchs-Definition). Sohn von Dakota of sweet little mouse.",
|
||||||
|
"genotype": "AA CC DD ee Gg pp Spsp",
|
||||||
|
"farbschlag": "Goldfuchs Starkschecke",
|
||||||
|
"source": "Julian 2026-06-07 — HUMANQUESTION D7 (Sohn-Korrektur, nicht ursprüngliche D7-Liste)"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
32
tools/wipe-import-data.sql
Normal file
32
tools/wipe-import-data.sql
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
-- WIPE-IMPORT-DATA: truncate only import-derived tables, preserve seeded data.
|
||||||
|
--
|
||||||
|
-- Scope (god decision 2026-06-07):
|
||||||
|
-- WIPE: GerbilPhotos, WeightRecords, HealthRecords, Gerbils, Litters
|
||||||
|
-- KEEP: ColorVarieties (migration-seeded, import matches against these)
|
||||||
|
-- BreederSettings, Sites, Pages (CMS), Contacts, Enclosures,
|
||||||
|
-- SaleContracts, Requests, MailSettings
|
||||||
|
--
|
||||||
|
-- Run ONLY after pg_dump backup. FK order: dependents first.
|
||||||
|
-- Usage (with Aspire Postgres running):
|
||||||
|
-- docker exec -i <postgres-container> psql -U postgres gerbilmanager < tools/wipe-import-data.sql
|
||||||
|
-- OR connect via psql and \i this file.
|
||||||
|
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
-- 1. leaf dependents
|
||||||
|
TRUNCATE TABLE "GerbilPhotos" CASCADE;
|
||||||
|
TRUNCATE TABLE "WeightRecords" CASCADE;
|
||||||
|
TRUNCATE TABLE "HealthRecords" CASCADE;
|
||||||
|
|
||||||
|
-- 2. main import tables (Gerbils before Litters: Gerbil.LitterId FK)
|
||||||
|
TRUNCATE TABLE "Gerbils" CASCADE;
|
||||||
|
TRUNCATE TABLE "Litters" CASCADE;
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
|
|
||||||
|
-- Verify (expected: 0 rows each)
|
||||||
|
SELECT 'GerbilPhotos' AS tbl, COUNT(*) FROM "GerbilPhotos"
|
||||||
|
UNION ALL SELECT 'WeightRecords', COUNT(*) FROM "WeightRecords"
|
||||||
|
UNION ALL SELECT 'HealthRecords', COUNT(*) FROM "HealthRecords"
|
||||||
|
UNION ALL SELECT 'Gerbils', COUNT(*) FROM "Gerbils"
|
||||||
|
UNION ALL SELECT 'Litters', COUNT(*) FROM "Litters";
|
||||||
Reference in New Issue
Block a user