All files / js/pages/products/batches Edit.vue

0% Statements 0/21
0% Branches 0/54
0% Functions 0/10
0% Lines 0/21

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199                                                                                                                                                                                                                                                                                                                                                                                                             
<script setup lang="ts">
import AppLayout from '@/layouts/AppLayout.vue';
import { Head, Link, useForm } from '@inertiajs/vue3';
import { ArrowLeft } from 'lucide-vue-next';
import products from '@/routes/products';
 
interface Product {
    id: number;
    name: string;
}
 
interface Batch {
    id: number;
    batch_number: string;
    manufacture_date: string | null;
    expiry_date: string | null;
    quantity: number;
    unit_cost: number | null;
    notes: string | null;
}
 
interface Props {
    product: Product;
    batch: Batch;
}
 
const props = defineProps<Props>();
 
const form = useForm({
    batch_number: props.batch.batch_number,
    manufacture_date: props.batch.manufacture_date || '',
    expiry_date: props.batch.expiry_date || '',
    quantity: props.batch.quantity,
    unit_cost: props.batch.unit_cost,
    notes: props.batch.notes || '',
});
 
function submit() {
    form.put(`/products/${props.product.id}/batches/${props.batch.id}`);
}
</script>
 
<template>
    <Head :title="`Edit Batch - ${props.product.name}`" />
 
    <AppLayout :breadcrumbs="[
        { title: 'Products', href: products.index().url },
        { title: props.product.name, href: products.show(props.product.id).url },
        { title: 'Batches', href: `/products/${props.product.id}/batches` },
        { title: 'Edit', href: '#' }
    ]">
        <div class="p-4">
            <!-- Header -->
            <div class="mb-6 flex items-center gap-4">
                <Link
                    :href="`/products/${props.product.id}/batches/${props.batch.id}`"
                    class="flex items-center gap-2 text-gray-600 hover:text-gray-900"
                >
                    <ArrowLeft class="h-4 w-4" />
                    Back to Batch
                </Link>
            </div>
 
            <div class="mx-auto max-w-2xl">
                <div class="mb-6">
                    <h1 class="text-2xl font-bold text-gray-900">Edit Batch</h1>
                    <p class="text-gray-600">Update batch information for {{ props.product.name }}</p>
                </div>
 
                <form @submit.prevent="submit" class="space-y-6">
                    <div class="rounded-lg border bg-white p-6">
                        <h2 class="mb-4 text-lg font-semibold text-gray-900">Batch Information</h2>
                        
                        <div class="space-y-4">
                            <!-- Batch Number -->
                            <div>
                                <label class="block text-sm font-medium text-gray-700">
                                    Batch Number *
                                </label>
                                <input
                                    v-model="form.batch_number"
                                    type="text"
                                    required
                                    class="mt-1 w-full rounded-md border border-gray-300 px-3 py-2 focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
                                />
                                <div v-if="form.errors.batch_number" class="mt-1 text-sm text-red-600">
                                    {{ form.errors.batch_number }}
                                </div>
                            </div>
 
                            <!-- Quantity -->
                            <div>
                                <label class="block text-sm font-medium text-gray-700">
                                    Quantity *
                                </label>
                                <input
                                    v-model.number="form.quantity"
                                    type="number"
                                    min="0"
                                    required
                                    class="mt-1 w-full rounded-md border border-gray-300 px-3 py-2 focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
                                />
                                <div v-if="form.errors.quantity" class="mt-1 text-sm text-red-600">
                                    {{ form.errors.quantity }}
                                </div>
                            </div>
 
                            <!-- Unit Cost -->
                            <div>
                                <label class="block text-sm font-medium text-gray-700">
                                    Unit Cost
                                </label>
                                <div class="mt-1 relative">
                                    <div class="absolute inset-y-0 left-0 pl-3 flex items-center pointer-events-none">
                                        <span class="text-gray-500 sm:text-sm">R</span>
                                    </div>
                                    <input
                                        v-model.number="form.unit_cost"
                                        type="number"
                                        step="0.01"
                                        min="0"
                                        class="w-full pl-7 rounded-md border border-gray-300 px-3 py-2 focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
                                    />
                                </div>
                                <div v-if="form.errors.unit_cost" class="mt-1 text-sm text-red-600">
                                    {{ form.errors.unit_cost }}
                                </div>
                            </div>
 
                            <!-- Manufacture Date -->
                            <div>
                                <label class="block text-sm font-medium text-gray-700">
                                    Manufacture Date
                                </label>
                                <input
                                    v-model="form.manufacture_date"
                                    type="date"
                                    class="mt-1 w-full rounded-md border border-gray-300 px-3 py-2 focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
                                />
                                <div v-if="form.errors.manufacture_date" class="mt-1 text-sm text-red-600">
                                    {{ form.errors.manufacture_date }}
                                </div>
                            </div>
 
                            <!-- Expiry Date -->
                            <div>
                                <label class="block text-sm font-medium text-gray-700">
                                    Expiry Date
                                </label>
                                <input
                                    v-model="form.expiry_date"
                                    type="date"
                                    class="mt-1 w-full rounded-md border border-gray-300 px-3 py-2 focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
                                />
                                <div v-if="form.errors.expiry_date" class="mt-1 text-sm text-red-600">
                                    {{ form.errors.expiry_date }}
                                </div>
                            </div>
 
                            <!-- Notes -->
                            <div>
                                <label class="block text-sm font-medium text-gray-700">
                                    Notes
                                </label>
                                <textarea
                                    v-model="form.notes"
                                    rows="3"
                                    class="mt-1 w-full rounded-md border border-gray-300 px-3 py-2 focus:border-blue-500 focus:outline-none focus:ring-1 focus:ring-blue-500"
                                />
                                <div v-if="form.errors.notes" class="mt-1 text-sm text-red-600">
                                    {{ form.errors.notes }}
                                </div>
                            </div>
                        </div>
                    </div>
 
                    <!-- Actions -->
                    <div class="flex items-center justify-end gap-4">
                        <Link
                            :href="`/products/${props.product.id}/batches/${props.batch.id}`"
                            class="rounded-md border border-gray-300 px-4 py-2 text-gray-700 hover:bg-gray-50"
                        >
                            Cancel
                        </Link>
                        <button
                            type="submit"
                            :disabled="form.processing"
                            class="rounded-md bg-blue-600 px-4 py-2 text-white hover:bg-blue-700 disabled:opacity-50"
                        >
                            {{ form.processing ? 'Updating...' : 'Update Batch' }}
                        </button>
                    </div>
                </form>
            </div>
        </div>
    </AppLayout>
</template>