252 lines
9.9 KiB
Vue
252 lines
9.9 KiB
Vue
<script setup lang="ts">
|
|
import { useForm } from '@inertiajs/vue3';
|
|
import { computed, ref, watch } from 'vue';
|
|
import { toast } from 'vue-sonner';
|
|
import { RupiahInput } from '@/components/form/rupiah-input';
|
|
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 { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Separator } from '@/components/ui/separator';
|
|
import { Switch } from '@/components/ui/switch';
|
|
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 });
|
|
|
|
const allMatches = ref(true);
|
|
|
|
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: [] as VariantPriceRow[],
|
|
shared_prices: buildEmptyPrices(),
|
|
});
|
|
|
|
watch(open, (isOpen) => {
|
|
if (isOpen) {
|
|
allMatches.value = true;
|
|
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();
|
|
}
|
|
});
|
|
|
|
watch(allMatches, (matches) => {
|
|
if (!matches) {
|
|
return;
|
|
}
|
|
|
|
verifyForm.results = verifyForm.results.map((result) => ({
|
|
...result,
|
|
good: result.cutting_result,
|
|
reject: 0,
|
|
}));
|
|
});
|
|
|
|
function setAllMatches(value: boolean) {
|
|
allMatches.value = value;
|
|
|
|
if (value) {
|
|
verifyForm.results = verifyForm.results.map((result) => ({
|
|
...result,
|
|
good: result.cutting_result,
|
|
reject: 0,
|
|
}));
|
|
}
|
|
}
|
|
|
|
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(() => {
|
|
const message = (verifyForm.errors as Record<string, string | undefined>).result_prices;
|
|
|
|
return message ? [message] : [];
|
|
});
|
|
|
|
function buildResultPricesPayload() {
|
|
return verifyForm.variant_prices.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(),
|
|
}))
|
|
.post(verify.url(props.cutting.id), {
|
|
preserveScroll: true,
|
|
onSuccess: () => {
|
|
open.value = false;
|
|
},
|
|
onError: (errors: Record<string, string>) => {
|
|
if (errors.system) {
|
|
toast.error(errors.system);
|
|
}
|
|
},
|
|
});
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<Dialog v-model:open="open">
|
|
<DialogContent class="sm:max-w-lg">
|
|
<DialogHeader>
|
|
<DialogTitle>Verifikasi Hasil Cutting</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<form @submit.prevent="submitVerify">
|
|
<div class="space-y-4 max-h-[60vh] overflow-y-auto scrollbar-thin px-1 py-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="flex items-center justify-between rounded-lg border p-3">
|
|
<Label for="stock-all-matches" class="text-sm font-medium">
|
|
Semua sesuai dengan data cutting
|
|
</Label>
|
|
<Switch id="stock-all-matches" :model-value="allMatches" @update:model-value="setAllMatches" />
|
|
</div>
|
|
|
|
<div class="space-y-2">
|
|
<div v-for="(result, index) in verifyForm.results" :key="result.product_variant_id"
|
|
class="flex items-center gap-3 rounded-lg border p-3">
|
|
<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]">({{ result.original_sample }} Sample, {{
|
|
result.original_outside_sample }} Outside Sample)</span>
|
|
</p>
|
|
</div>
|
|
<div class="flex items-center gap-2 shrink-0">
|
|
<div class="text-center">
|
|
<label :for="`stock-good-${index}`"
|
|
class="text-[10px] text-muted-foreground block">Bagus</label>
|
|
<Input :id="`stock-good-${index}`" type="number" v-model.number="result.good"
|
|
min="0" :max="result.cutting_result" class="h-7 w-16 px-1.5 text-xs text-center"
|
|
:disabled="allMatches"
|
|
@input="result.reject = result.cutting_result - result.good" />
|
|
</div>
|
|
<div class="text-center">
|
|
<label :for="`stock-reject-${index}`"
|
|
class="text-[10px] text-muted-foreground block">Reject</label>
|
|
<Input :id="`stock-reject-${index}`" type="number" v-model.number="result.reject"
|
|
min="0" :max="result.cutting_result" class="h-7 w-16 px-1.5 text-xs text-center"
|
|
:disabled="allMatches"
|
|
@input="result.good = result.cutting_result - result.reject" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<Separator />
|
|
|
|
<div class="space-y-2">
|
|
<p class="text-sm font-medium">Harga</p>
|
|
<div class="grid gap-2 sm:grid-cols-2">
|
|
<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="Contoh: Terdapat 1 barang cacat jahitan saat dihitung di toko" rows="3" />
|
|
<FieldError
|
|
:errors="verifyForm.errors.verification_note ? [verifyForm.errors.verification_note] : []" />
|
|
</Field>
|
|
</div>
|
|
|
|
<DialogFooter class="mt-6">
|
|
<Button type="button" variant="outline" :disabled="verifyForm.processing" @click="open = false">
|
|
Batal
|
|
</Button>
|
|
<Button type="submit" :disabled="verifyForm.processing">
|
|
{{ verifyForm.processing ? 'Menyimpan...' : 'Verifikasi & Tambah Stok' }}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</template>
|