Merge branch 'main' into codex/refactor-pickitem-model-and-related-components

This commit is contained in:
beatz174-bit
2025-11-23 12:37:04 +10:00
committed by GitHub
+39 -26
View File
@@ -42,38 +42,40 @@ export const AddItemScreen = () => {
setCartons(0);
}, [selectedProduct]);
const packagingLabel = isCarton ? cartonLabel : unitLabel;
const quantityHelperText = selectedProduct
? `Enter ${packagingLabel.toLowerCase()} to pick`
: 'Enter the quantity to pick';
const cartonCheckboxLabel = selectedProduct?.bulk_name
? `Carton (${selectedProduct.bulk_name})`
: 'Carton pick';
const addItem = async () => {
const productId = selectedProduct?.id;
if (!id || !productId) return;
if (!id || !productId || quantity <= 0) return;
const addOrUpdateItem = async (is_carton: boolean, quantity: number) => {
if (quantity <= 0) return;
const existing = items.find(
(item) => item.product_id === productId && item.is_carton === is_carton,
);
const existing = items.find((item) => item.product_id === productId && item.is_carton === isCarton);
if (existing) {
await db.pickItems.update(existing.id, {
quantity: existing.quantity + quantity,
updated_at: Date.now(),
});
return;
}
await db.pickItems.add({
id: uuidv4(),
pick_list_id: id,
product_id: productId,
quantity,
is_carton,
status: 'pending',
created_at: Date.now(),
if (existing) {
await db.pickItems.update(existing.id, {
quantity: existing.quantity + quantity,
updated_at: Date.now(),
});
};
navigate(`/pick-lists/${id}`);
return;
}
await Promise.all([addOrUpdateItem(false, units), addOrUpdateItem(true, cartons)]);
await db.pickItems.add({
id: uuidv4(),
pick_list_id: id,
product_id: productId,
quantity,
is_carton: isCarton,
status: 'pending',
created_at: Date.now(),
updated_at: Date.now(),
});
navigate(`/pick-lists/${id}`);
};
@@ -120,8 +122,19 @@ export const AddItemScreen = () => {
/>
)}
/>
<NumericStepper label={unitLabel} value={units} onChange={setUnits} />
<NumericStepper label={cartonLabel} value={cartons} onChange={setCartons} />
<TextField
type="number"
label={`Quantity (${packagingLabel})`}
value={quantity}
onChange={(event) => setQuantity(Math.max(1, Number(event.target.value)))}
inputProps={{ min: 1 }}
helperText={quantityHelperText}
/>
<FormControlLabel
control={<Checkbox checked={isCarton} onChange={(event) => setIsCarton(event.target.checked)} />}
label={cartonCheckboxLabel}
disabled={!selectedProduct}
/>
<Button variant="contained" disabled={!selectedProduct} onClick={addItem}>
Add to List
</Button>