item master cleanup

This commit is contained in:
2026-03-15 21:32:45 -05:00
parent 8029b308e9
commit f2b820746a
3 changed files with 48 additions and 3 deletions

View File

@@ -109,7 +109,7 @@ export function InventoryListPage() {
<th className="px-2 py-2">Type</th>
<th className="px-2 py-2">Status</th>
<th className="px-2 py-2">UOM</th>
<th className="px-2 py-2">Flags</th>
<th className="px-2 py-2">Qty</th>
<th className="px-2 py-2">BOM</th>
<th className="px-2 py-2">Updated</th>
</tr>
@@ -131,8 +131,8 @@ export function InventoryListPage() {
</td>
<td className="px-2 py-2 text-muted">{item.unitOfMeasure}</td>
<td className="px-2 py-2 text-xs text-muted">
<div>{item.isSellable ? "Sellable" : "Not sellable"}</div>
<div>{item.isPurchasable ? "Purchasable" : "Not purchasable"}</div>
<div>Total {item.onHandQuantity}</div>
<div>Available {item.availableQuantity}</div>
</td>
<td className="px-2 py-2 text-muted">{item.bomLineCount} lines</td>
<td className="px-2 py-2 text-muted">{new Date(item.updatedAt).toLocaleDateString()}</td>