fix(ausruestung): show untracked assignments, item traits in order wizard, receipt

gate for completion, PDF phone + last-row line
This commit is contained in:
Matthias Hochmeister
2026-04-15 10:58:51 +02:00
parent 279cc03b6b
commit 4c01683c10
5 changed files with 63 additions and 3 deletions

View File

@@ -429,6 +429,15 @@ export default function AusruestungsanfrageDetail() {
{p.geliefert && detail?.im_haus && (
<Chip label="Im Haus" size="small" color="success" />
)}
{p.geliefert && p.zuweisung_typ === 'keine' && (
<Chip label="Nicht verfolgt" size="small" color="default" variant="outlined" />
)}
{p.geliefert && p.zuweisung_typ === 'persoenlich' && (
<Chip label="Persönlich" size="small" color="primary" variant="outlined" />
)}
{p.geliefert && p.zuweisung_typ === 'ausruestung' && (
<Chip label="Ausrüstung" size="small" color="success" variant="outlined" />
)}
{p.eigenschaften && p.eigenschaften.length > 0 && p.eigenschaften.map(e => (
<Chip key={e.eigenschaft_id} label={`${e.eigenschaft_name}: ${e.wert}`} size="small" variant="outlined" />
))}