Bisher war die Auswahl eine fest im Frontend verdrahtete Liste und es gab nur eine Form: ueberall stand "3 Glas". Neu unter Verwaltung > Gebinde: anlegen, umbenennen, loeschen, jeweils mit Einzahl und Mehrzahl. Die eingebauten Gebinde lassen sich in der Schreibweise aendern, aber nicht loeschen; ein Gebinde, das ein Artikel verwendet, ebenfalls nicht. Der Artikel speichert weiterhin nur die Einzahl als Text - so bleiben vorhandene Artikel, Sicherungen und CSV-Dateien gueltig, und eine unbekannte Bezeichnung faellt schlicht auf die Einzahl zurueck. Deshalb zieht ein Umbenennen die Artikel mit; sonst zeigten sie auf eine Bezeichnung, die es nicht mehr gibt. Die Mehrzahl greift jetzt in Artikelliste, Artikelseite (Chargen und Gebinde- Auswahl), Auslagern und in allen Ablauf- und Einkaufslisten samt Startseite. Einheiten wie Gramm oder Liter bleiben unveraendert - die haben im Deutschen keine Mehrzahl. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
206 lines
7.5 KiB
JavaScript
206 lines
7.5 KiB
JavaScript
import { useEffect, useState } from "react";
|
||
import { api } from "../api";
|
||
import Icon from "../components/Icon";
|
||
import { ProduktThumb } from "../components/ProduktBild";
|
||
import { useToast } from "../toast";
|
||
import { useSettings } from "../settings";
|
||
import { buildUnitOptions, fmt, gebinde, isExpired, unitShort } from "../units";
|
||
|
||
export default function CheckOut() {
|
||
const { formatBestBefore } = useSettings();
|
||
const toast = useToast();
|
||
const [barcode, setBarcode] = useState("");
|
||
const [search, setSearch] = useState("");
|
||
const [results, setResults] = useState([]);
|
||
const [product, setProduct] = useState(null);
|
||
const [units, setUnits] = useState([]);
|
||
const [lots, setLots] = useState([]);
|
||
|
||
const [quantity, setQuantity] = useState("");
|
||
const [unit, setUnit] = useState("");
|
||
const [lotId, setLotId] = useState(""); // "" = automatisch (FEFO)
|
||
|
||
const [error, setError] = useState(null);
|
||
const [busy, setBusy] = useState(false);
|
||
|
||
useEffect(() => {
|
||
api.listUnits().then(setUnits).catch(() => {});
|
||
}, []);
|
||
|
||
async function selectProduct(p) {
|
||
setProduct(p);
|
||
setResults([]);
|
||
setLotId("");
|
||
setQuantity("");
|
||
const opts = buildUnitOptions(p, units);
|
||
// Gibt es ein Gebinde (Glas, Packung, …), ist das die naheliegende Eingabe.
|
||
setUnit(p.package_size ? "package" : (p.unit_name || (opts[0] && opts[0].value) || ""));
|
||
try {
|
||
setLots(await api.listLots(p.id));
|
||
} catch { setLots([]); }
|
||
}
|
||
|
||
async function doLookup() {
|
||
setError(null);
|
||
if (!barcode) return;
|
||
try {
|
||
const res = await api.lookup(barcode.trim());
|
||
if (res.found && res.existing_product) {
|
||
await selectProduct(res.existing_product);
|
||
} else {
|
||
setError("Kein bekanntes Produkt zu diesem Barcode im Lager.");
|
||
}
|
||
} catch (err) {
|
||
setError(err.message);
|
||
}
|
||
}
|
||
|
||
async function doSearch(e) {
|
||
e.preventDefault();
|
||
try {
|
||
setResults(await api.listProducts(search));
|
||
} catch (err) {
|
||
setError(err.message);
|
||
}
|
||
}
|
||
|
||
async function submit(e) {
|
||
e.preventDefault();
|
||
setError(null); setBusy(true);
|
||
try {
|
||
const res = await api.checkOut({
|
||
product_id: product.id,
|
||
quantity: Number(quantity),
|
||
unit,
|
||
lot_id: lotId === "" ? null : Number(lotId),
|
||
});
|
||
toast(
|
||
`Ausgelagert (${res.affected_lots.length} Charge(n)). Neuer Bestand: ` +
|
||
`${fmt(res.product_stock / (product.unit_factor || 1))} ${product.unit_name}`
|
||
);
|
||
setQuantity("");
|
||
const fresh = await api.getProduct(product.id);
|
||
setProduct(fresh);
|
||
setLots(await api.listLots(fresh.id));
|
||
setLotId("");
|
||
} catch (err) {
|
||
setError(err.message);
|
||
} finally {
|
||
setBusy(false);
|
||
}
|
||
}
|
||
|
||
const unitOpts = product ? buildUnitOptions(product, units) : [];
|
||
const selectedLot = lots.find((l) => String(l.id) === String(lotId)) || null;
|
||
const baseShort = product ? unitShort(product.base_unit) : "";
|
||
const pkgSize = product?.package_size || 0;
|
||
const pkgLabel = product?.package_label || "Packung";
|
||
|
||
// Chargenmenge in der Artikeleinheit (Gebinde), sonst in der Produkteinheit.
|
||
function lotAmount(q) {
|
||
if (pkgSize > 0) return `${fmt(q / pkgSize)} ${gebinde(q / pkgSize, pkgLabel)}`;
|
||
return `${fmt(q / (product?.unit_factor || 1))} ${product?.unit_name || baseShort}`;
|
||
}
|
||
|
||
return (
|
||
<div>
|
||
<div className="page-head"><h1>Auslagern</h1></div>
|
||
{error && <div className="alert error"><Icon name="alert" size={16} />{error}</div>}
|
||
|
||
{!product && (
|
||
<div className="grid-2">
|
||
<div className="card">
|
||
<div className="card-head"><Icon name="search" /><h2>Per Barcode</h2></div>
|
||
<div className="field-inline">
|
||
<label className="grow" style={{ margin: 0 }}>
|
||
<input placeholder="Barcode eingeben oder scannen" value={barcode}
|
||
onChange={(e) => setBarcode(e.target.value)}
|
||
onKeyDown={(e) => e.key === "Enter" && doLookup()} autoFocus />
|
||
</label>
|
||
<button className="btn primary" onClick={doLookup}>Suchen</button>
|
||
</div>
|
||
</div>
|
||
<div className="card">
|
||
<div className="card-head"><Icon name="package" /><h2>Aus Produktliste</h2></div>
|
||
<form className="field-inline" onSubmit={doSearch}>
|
||
<label className="grow" style={{ margin: 0 }}>
|
||
<input placeholder="Name suchen…" value={search} onChange={(e) => setSearch(e.target.value)} />
|
||
</label>
|
||
<button className="btn">Suchen</button>
|
||
</form>
|
||
<ul className="picklist">
|
||
{results.map((p) => (
|
||
<li key={p.id}>
|
||
<button className="link-btn" onClick={() => selectProduct(p)}>
|
||
{p.name} <span className="muted">({fmt(p.stock / (p.unit_factor || 1))} {p.unit_name})</span>
|
||
</button>
|
||
</li>
|
||
))}
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
)}
|
||
|
||
{product && (
|
||
<form className="card form-narrow" onSubmit={submit}>
|
||
<div className="selected-product">
|
||
<ProduktThumb productId={product.id} alt={product.name} />
|
||
<div className="info">
|
||
<div className="title">{product.name}</div>
|
||
<div className="muted small">
|
||
Verfügbar: {fmt(product.stock / (product.unit_factor || 1))} {product.unit_name}
|
||
</div>
|
||
</div>
|
||
<button type="button" className="btn ghost" onClick={() => setProduct(null)}>Ändern</button>
|
||
</div>
|
||
|
||
<label>
|
||
Charge
|
||
<select value={lotId} onChange={(e) => setLotId(e.target.value)}>
|
||
<option value="">Automatisch – zuerst ablaufende zuerst (FEFO)</option>
|
||
{lots.map((l) => (
|
||
<option key={l.id} value={l.id}>
|
||
{l.best_before ? `MHD ${formatBestBefore(l.best_before, l.best_before_precision)}` : "ohne MHD"} · {lotAmount(l.quantity)}
|
||
{isExpired(l.best_before) ? " · abgelaufen" : ""}
|
||
</option>
|
||
))}
|
||
</select>
|
||
</label>
|
||
|
||
{selectedLot && (
|
||
<div className={`alert ${isExpired(selectedLot.best_before) ? "error" : "info"}`}>
|
||
<Icon name="alert" size={16} />
|
||
Gewählte Charge: {lotAmount(selectedLot.quantity)}
|
||
{selectedLot.best_before ? ` · MHD ${formatBestBefore(selectedLot.best_before, selectedLot.best_before_precision)}` : " · ohne MHD"}
|
||
{isExpired(selectedLot.best_before) ? " (abgelaufen)" : ""}
|
||
</div>
|
||
)}
|
||
|
||
<div className="row">
|
||
<label className="grow">
|
||
Menge
|
||
<input type="number" step="any" min="0" value={quantity} required
|
||
onChange={(e) => setQuantity(e.target.value)} autoFocus />
|
||
</label>
|
||
<label className="grow">
|
||
Einheit
|
||
<select value={unit} onChange={(e) => setUnit(e.target.value)}>
|
||
{unitOpts.map((o) => <option key={o.value} value={o.value}>{o.label}</option>)}
|
||
</select>
|
||
</label>
|
||
</div>
|
||
|
||
{!selectedLot && (
|
||
<p className="muted small mt-0">
|
||
Ohne Auswahl wird automatisch die zuerst ablaufende Charge zuerst entnommen (FEFO).
|
||
</p>
|
||
)}
|
||
<button className="btn primary" disabled={busy}>
|
||
<Icon name="checkout" size={16} />{busy ? "…" : "Auslagern"}
|
||
</button>
|
||
</form>
|
||
)}
|
||
</div>
|
||
);
|
||
}
|