Web: Mindestbestand-Ort per Dropdown verschieben + OFF-Panel-Regression behoben
MinStock: die ORT-Spalte ist jetzt ein Dropdown (Gesamt/Lagerort). Auswahl verschiebt den Bedarf (moveRow) statt ihn zu duplizieren - mit Rueckfrage, falls der Zielort schon belegt ist. Produktwerte werden dabei umgerechnet, Gruppen nicht. OFF-Panel: meine schmalere Formularspalte hatte den Vergleichs-Button abgeschnitten und die OFF-Tabelle aus der Karte laufen lassen. Tabelle jetzt in .table-wrap (scrollt/stapelt), Button-Text darf umbrechen, Formularspalte etwas breiter. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -6,7 +6,7 @@ import Icon from "../components/Icon";
|
||||
import DataTable from "../components/DataTable";
|
||||
import CategoryPathLabel, { pathParts } from "../components/CategoryPathLabel";
|
||||
import { categoryInfoMap } from "../categoryPath";
|
||||
import { locationPathById } from "../locationPath";
|
||||
import { locationOptions, locationPathById } from "../locationPath";
|
||||
import { fmt } from "../units";
|
||||
|
||||
// Anzeigeeinheit eines Produkts: die im Formular gewählte Einheit (Gramm,
|
||||
@@ -163,6 +163,55 @@ export default function MinStock() {
|
||||
} catch (err) { setError(err.message); }
|
||||
}
|
||||
|
||||
// Einen bestehenden Mindestbestand auf einen anderen Ort verschieben: „(Gesamt)"
|
||||
// (ziel = "") oder ein Lagerort. Der Wert bleibt, der bisherige Geltungsbereich
|
||||
// wird geleert – so entsteht keine Dublette. Produkt-Werte werden zwischen
|
||||
// Anzeige-/Artikel-/Basiseinheit umgerechnet (wie in saveSoll), Gruppen nicht.
|
||||
async function moveRow(row, ziel) {
|
||||
const aktuell = row.scope === "loc" ? row.locId : "";
|
||||
if (String(ziel) === String(aktuell)) return;
|
||||
if (row.soll == null) return; // nichts zu verschieben
|
||||
const ent = row.entity;
|
||||
// Zielort schon mit einem Bedarf belegt? Dann würde er überschrieben.
|
||||
if (ziel && (ent.location_min_stocks || []).some((e) => String(e.location_id) === String(ziel))) {
|
||||
const ok = await confirm({
|
||||
title: "Lagerort schon belegt",
|
||||
message: `Für „${row.name}" gibt es an diesem Lagerort bereits einen Mindestbestand. Mit dem verschobenen Wert überschreiben?`,
|
||||
confirmLabel: "Überschreiben", danger: true,
|
||||
});
|
||||
if (!ok) return;
|
||||
}
|
||||
setError(null);
|
||||
try {
|
||||
if (row.kind === "product") {
|
||||
const p = ent;
|
||||
const artikel = (row.soll * dispFactor(p)) / articleUnit(p);
|
||||
let liste = p.location_min_stocks || [];
|
||||
if (row.scope === "loc") liste = mergeLoc(liste, row.locId, null); // alten Ort raus
|
||||
if (ziel) liste = mergeLoc(liste, ziel, artikel); // Zielort rein
|
||||
// Gesamt-Wert setzen (Umzug nach Gesamt) oder leeren (Umzug weg von Gesamt).
|
||||
if (row.scope === "global" || !ziel) {
|
||||
await api.updateProduct(p.id, {
|
||||
min_stock: ziel ? null : Math.round(row.soll * dispFactor(p)),
|
||||
min_stock_in_packages: false,
|
||||
min_stock_unit_id: p.display_unit_id ?? null,
|
||||
});
|
||||
}
|
||||
if (row.scope === "loc" || ziel) await api.setProductLocationMinStock(p.id, liste);
|
||||
} else {
|
||||
const g = ent; // Gruppe: Gesamt und Ort teilen dieselbe Einheit – keine Umrechnung
|
||||
let liste = g.location_min_stocks || [];
|
||||
if (row.scope === "loc") liste = mergeLoc(liste, row.locId, null);
|
||||
if (ziel) liste = mergeLoc(liste, ziel, row.soll);
|
||||
if (row.scope === "global" || !ziel) {
|
||||
await api.updateGroup(g.id, { min_stock: ziel ? null : row.soll });
|
||||
}
|
||||
if (row.scope === "loc" || ziel) await api.setGroupLocationMinStock(g.id, liste);
|
||||
}
|
||||
await load();
|
||||
} catch (err) { setError(err.message); }
|
||||
}
|
||||
|
||||
// Ausgewähltes Ziel des Dialogs + dessen Einheit (Menge wird darin erfasst).
|
||||
const draftTarget = draft.kind === "product"
|
||||
? products.find((p) => String(p.id) === String(draft.targetId))
|
||||
@@ -224,8 +273,22 @@ export default function MinStock() {
|
||||
render: (r) => (r.catId != null
|
||||
? <CategoryPathLabel parts={catInfo.get(r.catId)?.parts} fallback="–" />
|
||||
: <span className="muted">–</span>) },
|
||||
{ key: "ort", header: "Ort", width: 220, filterText: (r) => r.ort, sortValue: (r) => r.ort,
|
||||
render: (r) => (r.scope === "global" ? <span className="muted">{r.ort}</span> : r.ort) },
|
||||
{ key: "ort", header: "Ort", width: 240, filterText: (r) => r.ort, sortValue: (r) => r.ort,
|
||||
render: (r) => {
|
||||
// Editierbar, wenn es einen Wert zu verschieben gibt (leere Produktzeilen
|
||||
// ohne Bedarf bleiben Text – dort legt man über „+ Mindestbestand" an).
|
||||
if (!isAdmin || r.soll == null) {
|
||||
return r.scope === "global" ? <span className="muted">{r.ort}</span> : r.ort;
|
||||
}
|
||||
return (
|
||||
<select value={r.scope === "loc" ? r.locId : ""} style={{ marginTop: 0, minWidth: 150 }}
|
||||
title="Lagerort ändern – der Mindestbestand wird verschoben"
|
||||
onChange={(e) => moveRow(r, e.target.value)}>
|
||||
<option value="">(Gesamt)</option>
|
||||
{locationOptions(locations).map((o) => <option key={o.id} value={o.id}>{o.label}</option>)}
|
||||
</select>
|
||||
);
|
||||
} },
|
||||
{ key: "soll", header: "Mindestbestand", width: 190,
|
||||
sortValue: (r) => r.soll ?? -1,
|
||||
render: (r) => (isAdmin ? (
|
||||
|
||||
Reference in New Issue
Block a user