Compare commits
5 Commits
feature/is
...
feature/is
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0a020a6681 | ||
| ec6dd68e70 | |||
|
|
76c4a875ff | ||
|
|
2635483dbc | ||
| f6300c890b |
@@ -88,13 +88,37 @@
|
||||
|
||||
<!-- Action Buttons -->
|
||||
<template #footer>
|
||||
<div class="flex gap-2">
|
||||
<div class="flex flex-col gap-2">
|
||||
<!-- Quick Actions Row -->
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
<UButton
|
||||
icon="i-heroicons-arrow-trending-down"
|
||||
size="sm"
|
||||
color="orange"
|
||||
variant="soft"
|
||||
@click="handleConsume"
|
||||
:disabled="item.quantity <= 0.01"
|
||||
>
|
||||
Consume
|
||||
</UButton>
|
||||
<UButton
|
||||
icon="i-heroicons-arrow-trending-up"
|
||||
size="sm"
|
||||
color="green"
|
||||
variant="soft"
|
||||
@click="showRestockModal = true"
|
||||
>
|
||||
Restock
|
||||
</UButton>
|
||||
</div>
|
||||
|
||||
<!-- Management Actions Row -->
|
||||
<div class="grid grid-cols-2 gap-2">
|
||||
<UButton
|
||||
icon="i-heroicons-pencil"
|
||||
size="sm"
|
||||
color="gray"
|
||||
variant="soft"
|
||||
class="flex-1"
|
||||
@click="$emit('edit', item)"
|
||||
>
|
||||
Edit
|
||||
@@ -109,7 +133,61 @@
|
||||
Delete
|
||||
</UButton>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<!-- Restock Modal -->
|
||||
<UModal v-model="showRestockModal">
|
||||
<UCard>
|
||||
<template #header>
|
||||
<h3 class="text-lg font-semibold">Restock {{ item.name }}</h3>
|
||||
</template>
|
||||
|
||||
<div class="space-y-4">
|
||||
<div class="text-sm text-gray-600">
|
||||
Current: <span class="font-semibold">{{ item.quantity }} {{ item.unit?.abbreviation }}</span>
|
||||
</div>
|
||||
|
||||
<UFormGroup label="Amount to add">
|
||||
<UInput
|
||||
v-model.number="restockAmount"
|
||||
type="number"
|
||||
min="0.01"
|
||||
step="0.01"
|
||||
size="lg"
|
||||
autofocus
|
||||
placeholder="e.g. 5"
|
||||
/>
|
||||
</UFormGroup>
|
||||
|
||||
<div v-if="restockAmount > 0" class="text-sm text-gray-600">
|
||||
New total: <span class="font-semibold">{{ (Number(item.quantity) + Number(restockAmount)).toFixed(2) }} {{ item.unit?.abbreviation }}</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<template #footer>
|
||||
<div class="flex gap-2">
|
||||
<UButton
|
||||
color="primary"
|
||||
size="lg"
|
||||
class="flex-1"
|
||||
@click="handleRestock"
|
||||
:disabled="!restockAmount || restockAmount <= 0"
|
||||
>
|
||||
Add {{ restockAmount || 0 }} {{ item.unit?.abbreviation }}
|
||||
</UButton>
|
||||
<UButton
|
||||
color="gray"
|
||||
size="lg"
|
||||
variant="soft"
|
||||
@click="showRestockModal = false"
|
||||
>
|
||||
Cancel
|
||||
</UButton>
|
||||
</div>
|
||||
</template>
|
||||
</UCard>
|
||||
</UModal>
|
||||
</UCard>
|
||||
</template>
|
||||
|
||||
@@ -118,12 +196,17 @@ const props = defineProps<{
|
||||
item: any
|
||||
}>()
|
||||
|
||||
defineEmits<{
|
||||
const emit = defineEmits<{
|
||||
edit: [item: any]
|
||||
delete: [id: string]
|
||||
'update-quantity': [id: string, change: number]
|
||||
'consume': [id: string]
|
||||
'restock': [id: string, amount: number]
|
||||
}>()
|
||||
|
||||
const showRestockModal = ref(false)
|
||||
const restockAmount = ref<number>(1)
|
||||
|
||||
// Calculate days until expiry
|
||||
const daysUntilExpiry = computed(() => {
|
||||
if (!props.item.expiry_date) return null
|
||||
@@ -163,4 +246,24 @@ const isLowStock = computed(() => {
|
||||
if (!props.item.low_stock_threshold) return false
|
||||
return Number(props.item.quantity) <= Number(props.item.low_stock_threshold)
|
||||
})
|
||||
|
||||
// Quick actions
|
||||
const handleConsume = () => {
|
||||
emit('update-quantity', props.item.id, -1)
|
||||
}
|
||||
|
||||
const handleRestock = () => {
|
||||
if (restockAmount.value && restockAmount.value > 0) {
|
||||
emit('update-quantity', props.item.id, restockAmount.value)
|
||||
showRestockModal.value = false
|
||||
restockAmount.value = 1 // Reset for next time
|
||||
}
|
||||
}
|
||||
|
||||
// Reset restock amount when modal closes
|
||||
watch(showRestockModal, (isOpen) => {
|
||||
if (!isOpen) {
|
||||
restockAmount.value = 1
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
@@ -60,6 +60,7 @@ const { getInventory, deleteInventoryItem, updateQuantity } = useInventory()
|
||||
const props = defineProps<{
|
||||
refresh?: boolean
|
||||
tagFilters?: string[]
|
||||
searchQuery?: string
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{
|
||||
@@ -89,17 +90,27 @@ const loadInventory = async () => {
|
||||
|
||||
// Computed filtered items
|
||||
const filteredItems = computed(() => {
|
||||
if (!props.tagFilters || props.tagFilters.length === 0) {
|
||||
return items.value
|
||||
let result = items.value
|
||||
|
||||
// Filter by search query (case-insensitive)
|
||||
if (props.searchQuery && props.searchQuery.trim()) {
|
||||
const query = props.searchQuery.trim().toLowerCase()
|
||||
result = result.filter(item =>
|
||||
item.name.toLowerCase().includes(query)
|
||||
)
|
||||
}
|
||||
|
||||
// Filter items that have at least one of the selected tags
|
||||
return items.value.filter(item => {
|
||||
// Filter by tags
|
||||
if (props.tagFilters && props.tagFilters.length > 0) {
|
||||
result = result.filter(item => {
|
||||
if (!item.tags || item.tags.length === 0) return false
|
||||
|
||||
const itemTagIds = item.tags.map((t: any) => t.tag.id)
|
||||
return props.tagFilters!.some(filterId => itemTagIds.includes(filterId))
|
||||
})
|
||||
}
|
||||
|
||||
return result
|
||||
})
|
||||
|
||||
const handleDelete = async (id: string) => {
|
||||
|
||||
@@ -33,9 +33,36 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Search & Filters -->
|
||||
<UCard v-if="showFilters" class="mb-6 space-y-4">
|
||||
<!-- Search Bar -->
|
||||
<div>
|
||||
<UFormGroup label="Search Items">
|
||||
<UInput
|
||||
v-model="searchQuery"
|
||||
placeholder="Search by item name..."
|
||||
icon="i-heroicons-magnifying-glass"
|
||||
size="lg"
|
||||
:ui="{ icon: { trailing: { pointer: '' } } }"
|
||||
>
|
||||
<template #trailing>
|
||||
<UButton
|
||||
v-if="searchQuery"
|
||||
color="gray"
|
||||
variant="link"
|
||||
icon="i-heroicons-x-mark"
|
||||
:padded="false"
|
||||
@click="searchQuery = ''"
|
||||
/>
|
||||
</template>
|
||||
</UInput>
|
||||
</UFormGroup>
|
||||
</div>
|
||||
|
||||
<!-- Tag Filters -->
|
||||
<UCard v-if="showFilters" class="mb-6">
|
||||
<div>
|
||||
<TagsTagFilter v-model="selectedTagFilters" />
|
||||
</div>
|
||||
</UCard>
|
||||
|
||||
<!-- Add Item Form (Overlay) -->
|
||||
@@ -61,6 +88,7 @@
|
||||
ref="inventoryListRef"
|
||||
:refresh="refreshKey"
|
||||
:tag-filters="selectedTagFilters"
|
||||
:search-query="searchQuery"
|
||||
@add-item="showAddForm = true"
|
||||
@edit-item="editingItem = $event"
|
||||
/>
|
||||
@@ -82,6 +110,7 @@ const refreshKey = ref(0)
|
||||
const inventoryListRef = ref()
|
||||
const prefilledData = ref<any>(null)
|
||||
const selectedTagFilters = ref<string[]>([])
|
||||
const searchQuery = ref('')
|
||||
|
||||
// Handle scan-to-add flow (Issue #25)
|
||||
onMounted(() => {
|
||||
|
||||
Reference in New Issue
Block a user