store/resources/js/pages/admin/manage/stocks/table/StockVerifyDialog.vue
Yoga Pangestu 60aae40575
Some checks are pending
linter / quality (push) Waiting to run
tests / ci (8.3) (push) Waiting to run
tests / ci (8.4) (push) Waiting to run
tests / ci (8.5) (push) Waiting to run
refactor: streamline StockPendingApprovalSection and StockPendingSection components by removing material usage display; enhance StockVerifyDialog layout for better user interaction and responsiveness
2026-07-05 16:24:28 +07:00

340 lines
15 KiB
Vue

<script setup lang="ts">
import { useForm } from '@inertiajs/vue3';
import { computed, watch } from 'vue';
import { toast } from 'vue-sonner';
import { NumberInput } from '@/components/form/number-input';
import { RupiahInput } from '@/components/form/rupiah-input';
import MediaThumbnailCell from '@/components/media/MediaThumbnailCell.vue';
import { Badge } from '@/components/ui/badge';
import { Button } from '@/components/ui/button';
import {
Dialog,
DialogContent,
DialogFooter,
DialogHeader,
DialogTitle,
} from '@/components/ui/dialog';
import {
Field,
FieldError,
FieldLabel,
} from '@/components/ui/field';
import { Separator } from '@/components/ui/separator';
import { Textarea } from '@/components/ui/textarea';
import { parseRupiah } from '@/lib/rupiah';
import { verify } from '@/routes/admin/manage/stocks';
import type { CuttingListItem } from '@/types/cutting';
import {
PRICE_TYPES,
PRICE_TYPE_LABELS,
} from '@/types/product';
const props = defineProps<{
cutting: CuttingListItem;
}>();
const open = defineModel<boolean>('open', { required: true });
type MaterialGroup = {
type: 'combination' | 'single';
combinationId?: number;
items: CuttingListItem['materials'];
};
const materialGroups = computed<MaterialGroup[]>(() => {
const materials = props.cutting.materials ?? [];
const combinationMap = new Map<number, CuttingListItem['materials']>();
const singleItems: CuttingListItem['materials'] = [];
materials.forEach((item) => {
if (item.combination_id) {
if (!combinationMap.has(item.combination_id)) {
combinationMap.set(item.combination_id, []);
}
combinationMap.get(item.combination_id)!.push(item);
} else {
singleItems.push(item);
}
});
const groups: MaterialGroup[] = [];
for (const [combinationId, items] of combinationMap) {
groups.push({
type: 'combination',
combinationId,
items,
});
}
if (singleItems.length > 0) {
groups.push({
type: 'single',
items: singleItems,
});
}
return groups;
});
function buildEmptyPrices(): Record<string, string> {
return Object.fromEntries(PRICE_TYPES.map((type) => [type, '']));
}
interface VariantPriceRow {
product_variant_id: number;
name: string;
prices: Record<string, string>;
}
const verifyForm = useForm({
verification_note: '',
results: props.cutting.results.map(res => ({
product_variant_id: res.product_variant?.id || 0,
name: `${res.product_variant?.product?.name || ''} (${res.product_variant?.name || ''})`,
cutting_result: res.cutting_result,
original_sample: res.sample,
original_outside_sample: res.original_outside_sample,
good: res.cutting_result,
reject: 0,
})),
variant_prices: props.cutting.results.map(res => ({
product_variant_id: res.product_variant?.id || 0,
name: `${res.product_variant?.product?.name || ''} (${res.product_variant?.name || ''})`,
prices: buildEmptyPrices(),
})),
shared_prices: buildEmptyPrices(),
});
watch(open, (isOpen) => {
if (isOpen) {
verifyForm.verification_note = '';
verifyForm.results = props.cutting.results.map(res => ({
product_variant_id: res.product_variant?.id || 0,
name: `${res.product_variant?.product?.name || ''} (${res.product_variant?.name || ''})`,
cutting_result: res.cutting_result,
original_sample: res.sample,
original_outside_sample: res.original_outside_sample,
good: res.cutting_result,
reject: 0,
}));
verifyForm.variant_prices = props.cutting.results.map(res => ({
product_variant_id: res.product_variant?.id || 0,
name: `${res.product_variant?.product?.name || ''} (${res.product_variant?.name || ''})`,
prices: buildEmptyPrices(),
}));
verifyForm.shared_prices = buildEmptyPrices();
verifyForm.clearErrors();
}
});
function onGoodChange(result: any, value: string | number) {
const val = Number(value) || 0;
result.good = val;
result.reject = Math.max(0, result.cutting_result - val);
}
function onRejectChange(result: any, value: string | number) {
const val = Number(value) || 0;
result.reject = val;
result.good = Math.max(0, result.cutting_result - val);
}
function setSharedPrice(type: string, value: string) {
verifyForm.shared_prices[type] = value;
verifyForm.variant_prices = verifyForm.variant_prices.map((row) => ({
...row,
prices: { ...row.prices, [type]: value },
}));
}
const resultPricesErrors = computed(() => {
return Object.entries(verifyForm.errors)
.filter(([key]) => key === 'result_prices' || key.startsWith('result_prices.'))
.map(([_, message]) => message) as string[];
});
function buildResultPricesPayload(variantPrices: VariantPriceRow[]) {
return variantPrices.map((row) => ({
product_variant_id: row.product_variant_id,
prices: PRICE_TYPES.map((type) => ({
type,
price: Number.parseInt(parseRupiah(row.prices[type] ?? ''), 10) || 0,
})),
}));
}
function submitVerify() {
verifyForm
.transform((data) => ({
verification_note: data.verification_note,
results: data.results.map(({ product_variant_id, good, reject }) => ({
product_variant_id,
good,
reject,
})),
result_prices: buildResultPricesPayload(data.variant_prices),
}))
.post(verify.url(props.cutting.id), {
preserveScroll: true,
onSuccess: () => {
open.value = false;
},
onError: (errors: Record<string, string>) => {
const shown = new Set<string>();
for (const [key, message] of Object.entries(errors)) {
if (
key === 'result_prices' ||
key.startsWith('result_prices.') ||
key.startsWith('results.') ||
key === 'verification_note'
) {
continue;
}
if (!shown.has(message)) {
shown.add(message);
toast.error(message);
}
}
},
});
}
</script>
<template>
<Dialog v-model:open="open">
<DialogContent class="flex max-h-[90vh] flex-col sm:max-w-2xl">
<DialogHeader>
<DialogTitle>Verifikasi Hasil Cutting</DialogTitle>
</DialogHeader>
<form @submit.prevent="submitVerify" class="flex flex-1 flex-col min-h-0">
<div class="scrollbar-thin flex-1 space-y-4 overflow-y-auto pr-1">
<p class="text-sm text-muted-foreground">
Verifikasi jumlah produk yang diterima dan tentukan harga jual. Stok akan ditambahkan setelah
verifikasi.
</p>
<div class="space-y-2">
<div v-for="(result, index) in verifyForm.results" :key="result.product_variant_id"
class="rounded-lg border p-3">
<div class="flex flex-col gap-3 sm:flex-row sm:items-center sm:justify-between">
<div class="flex items-center gap-3 min-w-0">
<div class="shrink-0">
<MediaThumbnailCell :items="cutting.results[index]?.product_variant?.images ?? []" :max-visible="1" />
</div>
<div class="flex-1 min-w-0">
<p class="font-medium text-sm truncate">{{ result.name }}</p>
<p class="text-xs text-muted-foreground">
{{ result.cutting_result }} pcs
<span class="text-[10px] block sm:inline">({{ result.original_sample }} Sample, {{
result.original_outside_sample }} Diluar Sample)</span>
</p>
</div>
</div>
<div class="flex items-center gap-2 self-end sm:self-center shrink-0">
<div class="text-center">
<label :for="`stock-good-${index}`"
class="text-[10px] text-muted-foreground block mb-0.5">Bagus</label>
<NumberInput :id="`stock-good-${index}`" :model-value="result.good"
class="h-7 w-20 px-1.5 text-xs text-center"
@update:model-value="val => onGoodChange(result, val)" />
</div>
<div class="text-center">
<label :for="`stock-reject-${index}`"
class="text-[10px] text-muted-foreground block mb-0.5">Reject</label>
<NumberInput :id="`stock-reject-${index}`" :model-value="result.reject"
class="h-7 w-20 px-1.5 text-xs text-center"
@update:model-value="val => onRejectChange(result, val)" />
</div>
</div>
</div>
<FieldError :errors="[
verifyForm.errors[`results.${index}.good`],
verifyForm.errors[`results.${index}.reject`],
verifyForm.errors[`results.${index}.product_variant_id`]
].filter(Boolean) as string[]" />
</div>
</div>
<div v-if="cutting.materials && cutting.materials.length > 0" class="space-y-2">
<p class="text-sm font-medium">Bahan Baku Terpakai</p>
<div class="scrollbar-thin max-h-48 space-y-3 overflow-y-auto overscroll-y-contain">
<template v-for="group in materialGroups" :key="group.combinationId ?? 'single'">
<div v-if="group.type === 'combination'"
class="rounded-lg border-2 border-dashed border-primary/30 p-3">
<div class="mb-2 flex items-center gap-2">
<span class="text-sm font-medium text-primary">Kombinasi</span>
<Badge variant="secondary" class="text-xs">
{{ group.items.length }} bahan
</Badge>
</div>
<div class="space-y-2">
<div v-for="material in group.items" :key="material.id"
class="rounded-md border bg-background p-2.5">
<p class="truncate text-sm font-medium">
{{ material.raw_material_name || material.raw_material_price?.raw_material?.name }}
</p>
<p class="truncate text-xs text-muted-foreground">
{{ material.variant || material.raw_material_price?.variant }}
</p>
</div>
</div>
</div>
<template v-else>
<div v-for="material in group.items" :key="material.id"
class="rounded-lg border p-3">
<p class="truncate text-sm font-medium">
{{ material.raw_material_name || material.raw_material_price?.raw_material?.name }}
</p>
<p class="truncate text-xs text-muted-foreground">
{{ material.variant || material.raw_material_price?.variant }}
</p>
</div>
</template>
</template>
</div>
</div>
<Separator />
<div class="space-y-2">
<p class="text-sm font-medium">Harga</p>
<div class="grid gap-2 grid-cols-2 sm:grid-cols-4">
<Field v-for="type in PRICE_TYPES" :key="`shared-${type}`">
<FieldLabel class="text-xs" :for="`shared-price-${type}`" required>
{{ PRICE_TYPE_LABELS[type] }}
</FieldLabel>
<RupiahInput :id="`shared-price-${type}`" :model-value="verifyForm.shared_prices[type]"
@update:model-value="setSharedPrice(type, $event)" />
</Field>
</div>
</div>
<FieldError :errors="resultPricesErrors" />
<Field>
<FieldLabel for="stock-verification-note">Catatan Verifikasi</FieldLabel>
<Textarea id="stock-verification-note" v-model="verifyForm.verification_note"
placeholder="Masukkan catatan verifikasi" rows="3" />
<FieldError
:errors="verifyForm.errors.verification_note ? [verifyForm.errors.verification_note] : []" />
</Field>
</div>
<DialogFooter class="flex-col gap-2 border-t pt-4 sm:flex-row">
<Button type="button" variant="outline" class="w-full sm:w-auto" :disabled="verifyForm.processing" @click="open = false">
Batal
</Button>
<Button type="submit" class="w-full sm:w-auto" :disabled="verifyForm.processing">
{{ verifyForm.processing ? 'Menyimpan...' : 'Verifikasi & Tambah Stok' }}
</Button>
</DialogFooter>
</form>
</DialogContent>
</Dialog>
</template>