Add carton-aware pick item quantities and migration

This commit is contained in:
beatz174-bit
2025-11-23 12:03:22 +10:00
parent 64acab1cf2
commit 0dce13233f
6 changed files with 119 additions and 54 deletions
+12 -7
View File
@@ -113,12 +113,17 @@ Dexie tables must be implemented exactly as follows:
id: string id: string
pick_list_id: string pick_list_id: string
product_id: string product_id: string
quantity_units: number quantity: number
quantity_bulk: number is_carton: boolean
status: "pending" | "picked" | "skipped" status: "pending" | "picked" | "skipped"
created_at: number created_at: number
updated_at: number updated_at: number
Pick items record a single packaging type per row: set `is_carton` to `true` when counting
cartons (using the product's `bulk_name`) or `false` for single units (using `unit_type`). If
both units and cartons are needed for the same product, store them as two PickItem records so
quantities remain distinct.
------------------------------------------------------------------------ ------------------------------------------------------------------------
## 4. UI & UX Rules ## 4. UI & UX Rules
@@ -152,8 +157,8 @@ Dexie tables must be implemented exactly as follows:
### ActivePickListScreen ### ActivePickListScreen
- List of PickItems\ - List of PickItems\
- Tap = +1 unit\ - Tap = +1 of the item's unit type\
- Long-press = +1 bulk\ - Long-press = +1 of the item's unit type\
- Swipe left = mark picked\ - Swipe left = mark picked\
- Swipe right = delete\ - Swipe right = delete\
- Add Item button\ - Add Item button\
@@ -164,7 +169,7 @@ Dexie tables must be implemented exactly as follows:
- Search\ - Search\
- Category filter\ - Category filter\
- Scan barcode\ - Scan barcode\
- Increment units & bulk\ - Increment units & cartons separately (saved as distinct PickItems)\
- Add to pick list - Add to pick list
### ManageProductsScreen ### ManageProductsScreen
@@ -192,11 +197,11 @@ Dexie tables must be implemented exactly as follows:
### Tap ### Tap
Increase `quantity_units` by **1**. Increase `quantity` by **1** for the tapped item's unit type.
### Long Press ### Long Press
Increase `quantity_bulk` by **1** using a shared `useLongPress()` hook. Increase `quantity` by **1** using a shared `useLongPress()` hook.
### Swipe Left ### Swipe Left
+5 -6
View File
@@ -7,8 +7,7 @@ import { useSwipe } from '../hooks/useSwipe';
interface PickItemRowProps { interface PickItemRowProps {
item: PickItem; item: PickItem;
product?: Product | null; product?: Product | null;
onIncrementUnit: () => void; onIncrement: () => void;
onIncrementBulk: () => void;
onSwipeLeft: () => void; onSwipeLeft: () => void;
onSwipeRight: () => void; onSwipeRight: () => void;
} }
@@ -22,13 +21,13 @@ const statusColor: Record<PickItemStatus, 'default' | 'success' | 'warning'> = {
export const PickItemRow = ({ export const PickItemRow = ({
item, item,
product, product,
onIncrementUnit, onIncrement,
onIncrementBulk,
onSwipeLeft, onSwipeLeft,
onSwipeRight, onSwipeRight,
}: PickItemRowProps) => { }: PickItemRowProps) => {
const longPressHandlers = useLongPress({ onLongPress: onIncrementBulk, onClick: onIncrementUnit }); const longPressHandlers = useLongPress({ onLongPress: onIncrement, onClick: onIncrement });
const swipeHandlers = useSwipe({ onSwipeLeft, onSwipeRight }); const swipeHandlers = useSwipe({ onSwipeLeft, onSwipeRight });
const unitLabel = item.is_carton ? product?.bulk_name ?? 'cartons' : product?.unit_type ?? 'units';
return ( return (
<Stack <Stack
@@ -43,7 +42,7 @@ export const PickItemRow = ({
<div> <div>
<Typography variant="subtitle1">{product?.name ?? 'Unknown product'}</Typography> <Typography variant="subtitle1">{product?.name ?? 'Unknown product'}</Typography>
<Typography variant="caption" color="text.secondary"> <Typography variant="caption" color="text.secondary">
{item.quantity_units} units / {item.quantity_bulk} bulk {item.quantity} {unitLabel}
</Typography> </Typography>
</div> </div>
<Chip label={item.status} color={statusColor[item.status]} size="small" /> <Chip label={item.status} color={statusColor[item.status]} size="small" />
+58
View File
@@ -90,6 +90,64 @@ export class StockFillDB extends Dexie {
pickItems: 'id, pick_list_id, product_id, status, created_at, updated_at', pickItems: 'id, pick_list_id, product_id, status, created_at, updated_at',
categories: 'id, name, created_at, updated_at', categories: 'id, name, created_at, updated_at',
}); });
this.version(5)
.stores({
products: 'id, name, category, &barcode, archived, created_at, updated_at',
areas: 'id, name, created_at, updated_at',
pickLists: 'id, area_id, created_at, completed_at',
pickItems:
'id, pick_list_id, product_id, status, is_carton, quantity, created_at, updated_at',
categories: 'id, name, created_at, updated_at',
})
.upgrade(async (tx) => {
const items = await tx.table('pickItems').toArray();
const now = Date.now();
await Promise.all(
items.map(async (item) => {
const hasNewFields =
typeof (item as PickItem).quantity === 'number' &&
typeof (item as PickItem).is_carton === 'boolean';
if (hasNewFields) return undefined;
const legacyUnits = Number((item as PickItem).quantity_units ?? 0);
const legacyBulk = Number((item as PickItem).quantity_bulk ?? 0);
if (legacyUnits > 0 && legacyBulk > 0) {
await tx.table('pickItems').update(item.id, {
quantity: legacyUnits,
is_carton: false,
updated_at: now,
});
return tx.table('pickItems').add({
...item,
id: uuidv4(),
quantity: legacyBulk,
is_carton: true,
created_at: (item as PickItem).created_at ?? now,
updated_at: now,
});
}
if (legacyBulk > 0) {
return tx.table('pickItems').update(item.id, {
quantity: legacyBulk,
is_carton: true,
updated_at: now,
});
}
return tx.table('pickItems').update(item.id, {
quantity: legacyUnits,
is_carton: false,
updated_at: now,
});
}),
);
});
} }
} }
+5 -2
View File
@@ -4,9 +4,12 @@ export interface PickItem {
id: string; id: string;
pick_list_id: string; pick_list_id: string;
product_id: string; product_id: string;
quantity_units: number; quantity: number;
quantity_bulk: number; is_carton: boolean;
status: PickItemStatus; status: PickItemStatus;
created_at: number; created_at: number;
updated_at: number; updated_at: number;
// Legacy fields retained for backward compatibility with pre-v5 data.
quantity_units?: number;
quantity_bulk?: number;
} }
+3 -13
View File
@@ -19,20 +19,11 @@ export const ActivePickListScreen = () => {
[areas, pickList?.area_id], [areas, pickList?.area_id],
); );
const handleIncrementUnit = async (itemId: string) => { const handleIncrement = async (itemId: string) => {
const existing = await db.pickItems.get(itemId); const existing = await db.pickItems.get(itemId);
if (!existing) return; if (!existing) return;
await db.pickItems.update(itemId, { await db.pickItems.update(itemId, {
quantity_units: existing.quantity_units + 1, quantity: existing.quantity + 1,
updated_at: Date.now(),
});
};
const handleIncrementBulk = async (itemId: string) => {
const existing = await db.pickItems.get(itemId);
if (!existing) return;
await db.pickItems.update(itemId, {
quantity_bulk: existing.quantity_bulk + 1,
updated_at: Date.now(), updated_at: Date.now(),
}); });
}; };
@@ -68,8 +59,7 @@ export const ActivePickListScreen = () => {
key={item.id} key={item.id}
item={item} item={item}
product={products.find((p) => p.id === item.product_id)} product={products.find((p) => p.id === item.product_id)}
onIncrementUnit={() => handleIncrementUnit(item.id)} onIncrement={() => handleIncrement(item.id)}
onIncrementBulk={() => handleIncrementBulk(item.id)}
onSwipeLeft={() => handleSwipeLeft(item.id)} onSwipeLeft={() => handleSwipeLeft(item.id)}
onSwipeRight={() => handleSwipeRight(item.id)} onSwipeRight={() => handleSwipeRight(item.id)}
/> />
+36 -26
View File
@@ -25,26 +25,18 @@ export const AddItemScreen = () => {
const [units, setUnits] = useState(1); const [units, setUnits] = useState(1);
const [bulk, setBulk] = useState(0); const [bulk, setBulk] = useState(0);
const navigate = useNavigate(); const navigate = useNavigate();
const unitLabel = selectedProduct?.unit_type ?? 'Units';
const existingProductIds = useMemo( const cartonLabel = selectedProduct?.bulk_name ?? 'Cartons';
() => new Set(items.map((item) => item.product_id)),
[items],
);
const availableProducts = useMemo(
() => products.filter((product) => !existingProductIds.has(product.id)),
[existingProductIds, products],
);
const filteredProducts = useMemo(() => { const filteredProducts = useMemo(() => {
const normalizedQuery = query.trim().toLowerCase(); const normalizedQuery = query.trim().toLowerCase();
if (!normalizedQuery) return availableProducts; if (!normalizedQuery) return products;
return availableProducts.filter((product) => { return products.filter((product) => {
const searchableText = `${product.name} ${product.category} ${product.barcode ?? ''}`.toLowerCase(); const searchableText = `${product.name} ${product.category} ${product.barcode ?? ''}`.toLowerCase();
return searchableText.includes(normalizedQuery); return searchableText.includes(normalizedQuery);
}); });
}, [availableProducts, query]); }, [products, query]);
useEffect(() => { useEffect(() => {
if (!selectedProduct) return; if (!selectedProduct) return;
@@ -56,17 +48,35 @@ export const AddItemScreen = () => {
const addItem = async () => { const addItem = async () => {
const productId = selectedProduct?.id; const productId = selectedProduct?.id;
if (!id || !productId || existingProductIds.has(productId)) return; if (!id || !productId) return;
await db.pickItems.add({
id: uuidv4(), const addOrUpdateItem = async (is_carton: boolean, quantity: number) => {
pick_list_id: id, if (quantity <= 0) return;
product_id: productId, const existing = items.find(
quantity_units: units, (item) => item.product_id === productId && item.is_carton === is_carton,
quantity_bulk: bulk, );
status: 'pending',
created_at: Date.now(), if (existing) {
updated_at: Date.now(), 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(),
updated_at: Date.now(),
});
};
await Promise.all([addOrUpdateItem(false, units), addOrUpdateItem(true, bulk)]);
navigate(`/pick-lists/${id}`); navigate(`/pick-lists/${id}`);
}; };
@@ -113,8 +123,8 @@ export const AddItemScreen = () => {
/> />
)} )}
/> />
<NumericStepper label="Units" value={units} onChange={setUnits} /> <NumericStepper label={unitLabel} value={units} onChange={setUnits} />
<NumericStepper label="Bulk" value={bulk} onChange={setBulk} /> <NumericStepper label={cartonLabel} value={bulk} onChange={setBulk} />
<Button variant="contained" disabled={!selectedProduct} onClick={addItem}> <Button variant="contained" disabled={!selectedProduct} onClick={addItem}>
Add to List Add to List
</Button> </Button>