449 lines
17 KiB
Vue
449 lines
17 KiB
Vue
<script setup lang="ts">
|
|
import { router, useForm } from '@inertiajs/vue3';
|
|
import { Check, RotateCcw, Scissors, X } from '@lucide/vue';
|
|
import { computed, ref, watch } from 'vue';
|
|
import { toast } from 'vue-sonner';
|
|
import { RowDeleteAction, RowEditAction, RowStatusAction } from '@/components/button';
|
|
import ConfirmDialog from '@/components/ConfirmDialog.vue';
|
|
import { RupiahInput } from '@/components/form/rupiah-input';
|
|
import OwnerVerificationRowActions from '@/components/owner-verification/OwnerVerificationRowActions.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,
|
|
FieldGroup,
|
|
FieldLabel,
|
|
FieldSet,
|
|
} from '@/components/ui/field';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import { Switch } from '@/components/ui/switch';
|
|
import { Textarea } from '@/components/ui/textarea';
|
|
import { useCan } from '@/composables/useCan';
|
|
import { CuttingStatus } from '@/constants/cutting-status';
|
|
import { FIELD_LIMITS } from '@/lib/field-limits';
|
|
import { parseRupiah } from '@/lib/rupiah';
|
|
import { edit, destroy, transition_status } from '@/routes/admin/manage/cuttings';
|
|
import type { CuttingListItem, CuttingStatusAction } from '@/types/cutting';
|
|
import {
|
|
PRICE_TYPES,
|
|
PRICE_TYPE_LABELS,
|
|
} from '@/types/product';
|
|
|
|
const props = defineProps<{
|
|
cutting: CuttingListItem;
|
|
}>();
|
|
|
|
const { can } = useCan();
|
|
|
|
const statusConfirmOpen = ref(false);
|
|
const statusProcessing = ref(false);
|
|
const rejectDialogOpen = ref(false);
|
|
const verifyDialogOpen = ref(false);
|
|
const allMatches = ref(true);
|
|
const pendingAction = ref<CuttingStatusAction | null>(null);
|
|
|
|
const rejectForm = useForm({
|
|
status: CuttingStatus.REJECTED,
|
|
reason: '',
|
|
});
|
|
|
|
function buildEmptyPrices(): Record<string, string> {
|
|
return Object.fromEntries(PRICE_TYPES.map((type) => [type, '']));
|
|
}
|
|
|
|
const verifyForm = useForm({
|
|
status: CuttingStatus.VERIFIED,
|
|
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,
|
|
sampel: res.sampel,
|
|
hasil_cutting_diluar_sampel: res.hasil_cutting_diluar_sampel,
|
|
original_sampel: res.sampel,
|
|
original_hasil_cutting_diluar_sampel: res.hasil_cutting_diluar_sampel,
|
|
prices: buildEmptyPrices(),
|
|
})),
|
|
result_prices: [] as Array<{
|
|
product_variant_id: number;
|
|
prices: Array<{ type: string; price: number }>;
|
|
}>,
|
|
});
|
|
|
|
watch(verifyDialogOpen, (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,
|
|
sampel: res.sampel,
|
|
hasil_cutting_diluar_sampel: res.hasil_cutting_diluar_sampel,
|
|
original_sampel: res.sampel,
|
|
original_hasil_cutting_diluar_sampel: res.hasil_cutting_diluar_sampel,
|
|
prices: buildEmptyPrices(),
|
|
}));
|
|
verifyForm.result_prices = [];
|
|
verifyForm.clearErrors();
|
|
}
|
|
});
|
|
|
|
watch(allMatches, (matches) => {
|
|
if (!matches) {
|
|
return;
|
|
}
|
|
|
|
verifyForm.results = verifyForm.results.map((result) => ({
|
|
...result,
|
|
sampel: result.original_sampel,
|
|
hasil_cutting_diluar_sampel: result.original_hasil_cutting_diluar_sampel,
|
|
}));
|
|
});
|
|
|
|
function setAllMatches(value: boolean) {
|
|
allMatches.value = value;
|
|
|
|
if (value) {
|
|
verifyForm.results = verifyForm.results.map((result) => ({
|
|
...result,
|
|
sampel: result.original_sampel,
|
|
hasil_cutting_diluar_sampel: result.original_hasil_cutting_diluar_sampel,
|
|
}));
|
|
}
|
|
}
|
|
function setResultPrice(resultIndex: number, type: string, value: string) {
|
|
const result = verifyForm.results[resultIndex];
|
|
|
|
if (!result) {
|
|
return;
|
|
}
|
|
|
|
result.prices = {
|
|
...result.prices,
|
|
[type]: value,
|
|
};
|
|
}
|
|
|
|
function buildResultPricesPayload() {
|
|
return verifyForm.results.map((result) => ({
|
|
product_variant_id: result.product_variant_id,
|
|
prices: PRICE_TYPES.map((type) => ({
|
|
type,
|
|
price: Number.parseInt(parseRupiah(result.prices[type] ?? ''), 10) || 0,
|
|
})),
|
|
}));
|
|
}
|
|
|
|
const availableActions = computed(() => props.cutting.available_actions ?? []);
|
|
|
|
const canEdit = computed(
|
|
() => props.cutting.is_editable && can('cuttings.update'),
|
|
);
|
|
const canDelete = computed(
|
|
() => can('cuttings.delete') && (props.cutting.status === CuttingStatus.IN_PROGRESS || props.cutting.status === CuttingStatus.REJECTED),
|
|
);
|
|
|
|
function canPerformAction(action: CuttingStatusAction): boolean {
|
|
return can(action.permission);
|
|
}
|
|
|
|
function statusConfirmDescription(action: CuttingStatusAction): string {
|
|
if (action.status === CuttingStatus.COMPLETED) {
|
|
return 'Cutting akan ditandai selesai. Stok bahan baku akan dipotong sesuai pemakaian. Menunggu verifikasi admin toko.';
|
|
}
|
|
|
|
if (action.status === CuttingStatus.VERIFIED) {
|
|
return 'Hasil cutting akan diverifikasi. Stok sampel dan hasil cutting diluar sampel akan ditambahkan ke produk.';
|
|
}
|
|
|
|
if (action.status === CuttingStatus.IN_PROGRESS) {
|
|
return 'Cutting dikembalikan ke proses untuk diperbaiki.';
|
|
}
|
|
|
|
return '';
|
|
}
|
|
|
|
function openStatusConfirm(action: CuttingStatusAction) {
|
|
if (action.status === CuttingStatus.VERIFIED) {
|
|
verifyDialogOpen.value = true;
|
|
|
|
return;
|
|
}
|
|
|
|
if (action.status === CuttingStatus.REJECTED) {
|
|
rejectForm.reset();
|
|
rejectForm.clearErrors();
|
|
rejectDialogOpen.value = true;
|
|
|
|
return;
|
|
}
|
|
|
|
pendingAction.value = action;
|
|
statusConfirmOpen.value = true;
|
|
}
|
|
|
|
function submitVerify() {
|
|
verifyForm
|
|
.transform((data) => ({
|
|
status: data.status,
|
|
verification_note: data.verification_note,
|
|
results: data.results.map(({ product_variant_id, sampel, hasil_cutting_diluar_sampel }) => ({
|
|
product_variant_id,
|
|
sampel,
|
|
hasil_cutting_diluar_sampel,
|
|
})),
|
|
result_prices: buildResultPricesPayload(),
|
|
}))
|
|
.post(transition_status.url(props.cutting.id), {
|
|
preserveScroll: true,
|
|
onSuccess: () => {
|
|
verifyDialogOpen.value = false;
|
|
},
|
|
onError: (errors: any) => {
|
|
if (errors.system) {
|
|
toast.error(errors.system);
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
function transitionStatus() {
|
|
if (!pendingAction.value) {
|
|
return;
|
|
}
|
|
|
|
statusProcessing.value = true;
|
|
|
|
router.post(
|
|
transition_status.url(props.cutting.id),
|
|
{
|
|
status: pendingAction.value.status,
|
|
},
|
|
{
|
|
preserveScroll: true,
|
|
onSuccess: () => {
|
|
statusConfirmOpen.value = false;
|
|
pendingAction.value = null;
|
|
},
|
|
onError: (errors: any) => {
|
|
if (errors.system) {
|
|
toast.error(errors.system);
|
|
}
|
|
},
|
|
onFinish: () => {
|
|
statusProcessing.value = false;
|
|
},
|
|
},
|
|
);
|
|
}
|
|
|
|
function submitReject() {
|
|
rejectForm.post(transition_status.url(props.cutting.id), {
|
|
preserveScroll: true,
|
|
onSuccess: () => {
|
|
rejectDialogOpen.value = false;
|
|
},
|
|
onError: (errors: any) => {
|
|
if (errors.system) {
|
|
toast.error(errors.system);
|
|
}
|
|
},
|
|
});
|
|
}
|
|
|
|
watch(rejectDialogOpen, (isOpen) => {
|
|
if (!isOpen) {
|
|
rejectForm.reset();
|
|
rejectForm.clearErrors();
|
|
}
|
|
});
|
|
|
|
function actionIcon(status: string) {
|
|
if (status === CuttingStatus.COMPLETED) {
|
|
return Scissors;
|
|
}
|
|
|
|
if (status === CuttingStatus.VERIFIED) {
|
|
return Check;
|
|
}
|
|
|
|
if (status === CuttingStatus.IN_PROGRESS) {
|
|
return RotateCcw;
|
|
}
|
|
|
|
return X;
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-wrap items-center justify-end gap-1">
|
|
<OwnerVerificationRowActions v-if="cutting.status === CuttingStatus.PENDING_VERIFICATION" type="cutting"
|
|
:id="cutting.id" :title="cutting.description ?? `Cutting #${cutting.id}`" subject-label="Cutting"
|
|
action-label="Verifikasi Stok" />
|
|
|
|
<template v-for="action in availableActions" :key="action.status">
|
|
<RowStatusAction v-if="canPerformAction(action)" :size="'sm'" :icon="actionIcon(action.status)"
|
|
:label="action.label" :destructive="action.destructive" @click="openStatusConfirm(action)" />
|
|
</template>
|
|
|
|
<RowEditAction v-if="canEdit" :href="edit.url(cutting.id)" />
|
|
|
|
<template v-if="canDelete">
|
|
<RowDeleteAction :action-url="destroy.url(cutting.id)" title="Hapus cutting?"
|
|
description="Data cutting ini akan dihapus permanen." error-message="Gagal menghapus cutting." />
|
|
</template>
|
|
</div>
|
|
|
|
<ConfirmDialog v-model:open="statusConfirmOpen" :title="pendingAction
|
|
? `${pendingAction.label} cutting?`
|
|
: 'Ubah status cutting?'
|
|
" :description="pendingAction ? statusConfirmDescription(pendingAction) : ''
|
|
" :confirm-label="pendingAction?.label ?? 'Konfirmasi'" cancel-label="Batal"
|
|
:destructive="pendingAction?.destructive ?? false" :loading="statusProcessing" @confirm="transitionStatus" />
|
|
|
|
<Dialog v-model:open="rejectDialogOpen">
|
|
<DialogContent class="sm:max-w-md">
|
|
<DialogHeader>
|
|
<DialogTitle>Tolak Cutting</DialogTitle>
|
|
</DialogHeader>
|
|
|
|
<form @submit.prevent="submitReject">
|
|
<FieldGroup>
|
|
<FieldSet class="grid gap-4">
|
|
<Field>
|
|
<FieldLabel for="cutting-reject-reason" required>Alasan Penolakan</FieldLabel>
|
|
<Textarea id="cutting-reject-reason" v-model="rejectForm.reason"
|
|
placeholder="Contoh: Jumlah barang yang diterima tidak sesuai" rows="3" autofocus
|
|
:maxlength="FIELD_LIMITS.reason" />
|
|
<FieldError :errors="rejectForm.errors.reason
|
|
? [rejectForm.errors.reason]
|
|
: []
|
|
" />
|
|
</Field>
|
|
</FieldSet>
|
|
</FieldGroup>
|
|
|
|
<DialogFooter class="mt-6">
|
|
<Button type="button" variant="outline" :disabled="rejectForm.processing"
|
|
@click="rejectDialogOpen = false">
|
|
Batal
|
|
</Button>
|
|
<Button type="submit" variant="destructive" :disabled="rejectForm.processing">
|
|
{{ rejectForm.processing ? 'Menyimpan...' : 'Tolak' }}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
|
|
<Dialog v-model:open="verifyDialogOpen">
|
|
<DialogContent class="sm:max-w-2xl">
|
|
<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 di toko dan tentukan harga jual per varian.
|
|
</p>
|
|
|
|
<div class="flex items-center justify-between rounded-lg border p-3">
|
|
<Label for="all-matches" class="text-sm font-medium">
|
|
Semua sesuai dengan data cutting
|
|
</Label>
|
|
<Switch id="all-matches" :model-value="allMatches" @update:model-value="setAllMatches" />
|
|
</div>
|
|
|
|
<div class="space-y-3">
|
|
<div v-for="(result, index) in verifyForm.results" :key="result.product_variant_id"
|
|
class="p-3 border rounded-lg space-y-3">
|
|
<div class="font-medium text-sm">
|
|
{{ result.name }}
|
|
</div>
|
|
<div class="grid grid-cols-3 gap-2 items-center text-xs">
|
|
<div>
|
|
<span class="text-muted-foreground block">Hasil Potong:</span>
|
|
<span class="font-semibold">{{ result.cutting_result }} pcs</span>
|
|
</div>
|
|
<div>
|
|
<span class="text-muted-foreground block mb-0.5">Data cutting:</span>
|
|
<span class="font-medium tabular-nums">
|
|
{{ result.original_sampel }} sampel ·
|
|
{{ result.original_hasil_cutting_diluar_sampel }} diluar sampel
|
|
</span>
|
|
</div>
|
|
<div>
|
|
<span class="text-muted-foreground block">Diluar Sampel:</span>
|
|
<Badge variant="secondary" class="font-semibold">
|
|
{{ result.hasil_cutting_diluar_sampel }} pcs
|
|
</Badge>
|
|
</div>
|
|
</div>
|
|
<div class="grid grid-cols-2 gap-2 items-end text-xs">
|
|
<div>
|
|
<label :for="`sampel-${index}`" class="text-muted-foreground block mb-0.5">Sampel
|
|
(diterima):</label>
|
|
<Input :id="`sampel-${index}`" type="number" v-model.number="result.sampel"
|
|
min="0" :max="result.cutting_result" class="h-8 w-full px-2 text-xs"
|
|
:disabled="allMatches"
|
|
@input="result.hasil_cutting_diluar_sampel = result.cutting_result - result.sampel" />
|
|
</div>
|
|
<div>
|
|
<label :for="`diluar-sampel-${index}`" class="text-muted-foreground block mb-0.5">Diluar
|
|
Sampel
|
|
(diterima):</label>
|
|
<Input :id="`diluar-sampel-${index}`" type="number" v-model.number="result.hasil_cutting_diluar_sampel"
|
|
min="0" :max="result.cutting_result" class="h-8 w-full px-2 text-xs"
|
|
:disabled="allMatches"
|
|
@input="result.sampel = result.cutting_result - result.hasil_cutting_diluar_sampel" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="grid gap-2 sm:grid-cols-2">
|
|
<Field v-for="type in PRICE_TYPES" :key="`${result.product_variant_id}-${type}`">
|
|
<FieldLabel class="text-xs" :for="`price-${index}-${type}`">
|
|
{{ PRICE_TYPE_LABELS[type] }}
|
|
</FieldLabel>
|
|
<RupiahInput :id="`price-${index}-${type}`" :model-value="result.prices[type]"
|
|
@update:model-value="setResultPrice(index, type, $event)" />
|
|
</Field>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<FieldError :errors="verifyForm.errors.result_prices ? [verifyForm.errors.result_prices] : []" />
|
|
|
|
<Field>
|
|
<FieldLabel for="verification-note">Catatan Verifikasi</FieldLabel>
|
|
<Textarea id="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="verifyDialogOpen = false">
|
|
Batal
|
|
</Button>
|
|
<Button type="submit" :disabled="verifyForm.processing">
|
|
{{ verifyForm.processing ? 'Menyimpan...' : 'Verifikasi' }}
|
|
</Button>
|
|
</DialogFooter>
|
|
</form>
|
|
</DialogContent>
|
|
</Dialog>
|
|
</template>
|