changes
This commit is contained in:
@@ -3,8 +3,6 @@ const props = defineProps({
|
||||
invoice: Object,
|
||||
});
|
||||
|
||||
const { $dayjs } = useNuxtApp();
|
||||
|
||||
const historyItems = [
|
||||
{
|
||||
id: 1,
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
const props = defineProps({
|
||||
invoice: Object,
|
||||
});
|
||||
const { $formatNum } = useNuxtApp();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -5,7 +5,7 @@ const props = defineProps({
|
||||
invoice: Object,
|
||||
});
|
||||
|
||||
const { $getdata, $formatNum } = useNuxtApp();
|
||||
const { $getdata } = useNuxtApp();
|
||||
const invoiceDetails = ref([]);
|
||||
onMounted(async () => {
|
||||
invoiceDetails.value = await $getdata("Invoice_Detail", { filter: { invoice: props.invoice.id } });
|
||||
|
||||
@@ -9,7 +9,6 @@ const props = defineProps({
|
||||
invoice: Object,
|
||||
});
|
||||
|
||||
const { $dayjs, $formatNum } = useNuxtApp();
|
||||
const emit = defineEmits(["unselect"]);
|
||||
|
||||
const tabs = [
|
||||
|
||||
Reference in New Issue
Block a user