135 lines
5.2 KiB
Vue
135 lines
5.2 KiB
Vue
<script setup lang="ts">
|
|
import { Card } from '@/components/ui/card';
|
|
import type { CuttingListItem } from '@/types/cutting';
|
|
import DataTableActions from './data-table-actions.vue';
|
|
|
|
const CM_PER_YARD = 91.44;
|
|
const CM_PER_METER = 100;
|
|
|
|
function formatTotalMaterialUsage(totalUsage: number | null | undefined, materials: any[]): string {
|
|
if (!totalUsage || !materials.length) {
|
|
return '0';
|
|
}
|
|
|
|
const unit = materials[0]?.raw_material_price?.raw_material?.unit;
|
|
|
|
if (unit === 'yard') {
|
|
return (totalUsage * CM_PER_YARD).toFixed(2);
|
|
}
|
|
|
|
if (unit === 'meter') {
|
|
return (totalUsage * CM_PER_METER).toFixed(2);
|
|
}
|
|
|
|
return totalUsage.toFixed(2);
|
|
}
|
|
|
|
function getTotalMaterialUsageUnit(materials: any[]): string {
|
|
const unit = materials[0]?.raw_material_price?.raw_material?.unit;
|
|
|
|
if (unit === 'yard' || unit === 'meter') {
|
|
return 'cm';
|
|
}
|
|
|
|
return materials[0]?.raw_material_price?.raw_material?.unit_abbreviation ?? '';
|
|
}
|
|
|
|
function formatMaterialUsage(mat: any): string {
|
|
const usage = mat.material_usage ?? 0;
|
|
const unit = mat.raw_material_price?.raw_material?.unit;
|
|
|
|
if (unit === 'yard') {
|
|
return (usage * CM_PER_YARD).toFixed(2);
|
|
}
|
|
|
|
if (unit === 'meter') {
|
|
return (usage * CM_PER_METER).toFixed(2);
|
|
}
|
|
|
|
return usage.toFixed(2);
|
|
}
|
|
|
|
function getMaterialUnit(mat: any): string {
|
|
const unit = mat.raw_material_price?.raw_material?.unit;
|
|
|
|
if (unit === 'yard' || unit === 'meter') {
|
|
return 'cm';
|
|
}
|
|
|
|
return mat.raw_material_price?.raw_material?.unit_abbreviation ?? '';
|
|
}
|
|
|
|
defineProps<{
|
|
cuttings: CuttingListItem[];
|
|
}>();
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<div v-if="cuttings.length" class="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-3">
|
|
<Card v-for="cutting in cuttings" :key="cutting.id"
|
|
class="flex flex-col justify-between overflow-hidden border bg-card/50 py-0 gap-0">
|
|
<div class="border-b bg-muted/20 px-4 py-3 flex items-center justify-between gap-2">
|
|
<div class="min-w-0">
|
|
<h4 class="font-medium text-sm truncate">
|
|
Cutting #{{ cutting.id }}
|
|
</h4>
|
|
<span class="text-[10px] text-muted-foreground block truncate">
|
|
{{ cutting.created_at_formatted }}
|
|
</span>
|
|
</div>
|
|
<div class="flex shrink-0 items-center">
|
|
<DataTableActions :cutting="cutting" />
|
|
</div>
|
|
</div>
|
|
|
|
<div class="p-4 space-y-3 flex-1 text-xs">
|
|
<div v-if="cutting.description" class="text-muted-foreground pb-2 border-b">
|
|
<span class="font-medium text-foreground">Catatan:</span> {{ cutting.description }}
|
|
</div>
|
|
|
|
<div class="space-y-1">
|
|
<span class="font-medium text-foreground">Bahan Baku:</span>
|
|
<ul class="list-disc pl-4 space-y-0.5 text-muted-foreground">
|
|
<li v-for="mat in cutting.materials" :key="mat.id">
|
|
{{ mat.raw_material_price?.raw_material?.name }} ({{
|
|
mat.raw_material_price?.variant }}) - {{ formatMaterialUsage(mat) }} {{ getMaterialUnit(mat) }}
|
|
</li>
|
|
<li v-if="!cutting.materials.length">Belum ada bahan baku</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="space-y-1">
|
|
<span class="font-medium text-foreground">Hasil Produk:</span>
|
|
<ul class="list-disc pl-4 space-y-0.5 text-muted-foreground">
|
|
<li v-for="res in cutting.results" :key="res.id">
|
|
{{ res.product_variant?.product?.name }} ({{ res.product_variant?.name }}) -
|
|
{{ res.cutting_result }} pcs
|
|
</li>
|
|
<li v-if="!cutting.results.length">Belum ada hasil produk</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div v-if="cutting.results.length" class="space-y-1.5 pt-2 border-t">
|
|
<div class="flex items-center justify-between text-[11px]">
|
|
<span class="text-muted-foreground">Total Hasil Cutting:</span>
|
|
<span class="font-semibold tabular-nums">{{ cutting.total_result_pieces ?? 0 }}
|
|
pcs</span>
|
|
</div>
|
|
<div class="flex items-center justify-between text-[11px]">
|
|
<span class="text-muted-foreground">Total Pemakaian Bahan:</span>
|
|
<span class="font-semibold tabular-nums">{{ formatTotalMaterialUsage(cutting.total_material_usage, cutting.materials) }} {{ getTotalMaterialUsageUnit(cutting.materials) }}</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="text-[11px] text-muted-foreground pt-2 border-t flex items-center justify-between">
|
|
<span>Pembuat:</span>
|
|
<span class="font-medium text-foreground">
|
|
{{ cutting.created_by?.profile?.full_name ?? cutting.created_by?.username }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</Card>
|
|
</div>
|
|
</template>
|