fix(ausruestung): show untracked assignments, item traits in order wizard, receipt
gate for completion, PDF phone + last-row line
This commit is contained in:
@@ -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" />
|
||||
))}
|
||||
|
||||
Reference in New Issue
Block a user