22 lines
867 B
Vue
22 lines
867 B
Vue
<script setup lang="ts">
|
|
import { RowDeleteAction, RowEditAction } from '@/components/button';
|
|
import { useCan } from '@/composables/useCan';
|
|
import type { RawMaterialListItem } from '@/types/raw-material';
|
|
import { edit, destroy } from '@/routes/admin/master/raw_materials';
|
|
|
|
defineProps<{
|
|
material: RawMaterialListItem;
|
|
}>();
|
|
|
|
const { can } = useCan();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex items-center justify-end gap-1">
|
|
<RowEditAction v-if="can('raw_materials.update')" :href="edit.url(material.id)" />
|
|
<RowDeleteAction v-if="can('raw_materials.delete')" :action-url="destroy.url(material.id)" title="Hapus bahan baku?"
|
|
:description="`Bahan baku ${material.name} akan dihapus beserta seluruh variannya. Tindakan ini tidak dapat dibatalkan.`"
|
|
error-message="Gagal menghapus bahan baku." />
|
|
</div>
|
|
</template>
|