Merge pull request #33 from beatz174-bit/codex/refactor-additemscreen-for-quantity-input-zovgfo

Simplify add item quantity controls
This commit is contained in:
beatz174-bit
2025-11-23 12:28:47 +10:00
committed by GitHub
+37 -29
View File
@@ -51,43 +51,40 @@ export const AddItemScreen = () => {
setIsCarton(false); setIsCarton(false);
}, [selectedProduct]); }, [selectedProduct]);
const quantityHelperText = selectedProduct?.unit_type const packagingLabel = isCarton ? cartonLabel : unitLabel;
? `Enter ${selectedProduct.unit_type} to pick` const quantityHelperText = selectedProduct
? `Enter ${packagingLabel.toLowerCase()} to pick`
: 'Enter the quantity to pick'; : 'Enter the quantity to pick';
const cartonLabel = selectedProduct?.bulk_name ? `Carton (${selectedProduct.bulk_name})` : 'Carton'; const cartonCheckboxLabel = selectedProduct?.bulk_name
? `Carton (${selectedProduct.bulk_name})`
: 'Carton pick';
const addItem = async () => { const addItem = async () => {
const productId = selectedProduct?.id; const productId = selectedProduct?.id;
if (!id || !productId) return; if (!id || !productId || quantity <= 0) return;
const addOrUpdateItem = async (is_carton: boolean, quantity: number) => { const existing = items.find((item) => item.product_id === productId && item.is_carton === isCarton);
if (quantity <= 0) return;
const existing = items.find(
(item) => item.product_id === productId && item.is_carton === is_carton,
);
if (existing) { if (existing) {
await db.pickItems.update(existing.id, { await db.pickItems.update(existing.id, {
quantity: existing.quantity + quantity, 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(),
updated_at: Date.now(), updated_at: Date.now(),
}); });
}; navigate(`/pick-lists/${id}`);
return;
}
await Promise.all([addOrUpdateItem(false, units), addOrUpdateItem(true, bulk)]); 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}`); navigate(`/pick-lists/${id}`);
}; };
@@ -134,8 +131,19 @@ export const AddItemScreen = () => {
/> />
)} )}
/> />
<NumericStepper label={unitLabel} value={units} onChange={setUnits} /> <TextField
<NumericStepper label={cartonLabel} value={bulk} onChange={setBulk} /> 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}> <Button variant="contained" disabled={!selectedProduct} onClick={addItem}>
Add to List Add to List
</Button> </Button>