aboutsummaryrefslogtreecommitdiff
path: root/src/views/EditInvoice.vue
blob: 1ea96648f01ac3a499e3f24718d3857e3a2dc39f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<script setup lang="ts">
import { ref, onMounted } from 'vue'
import { useRoute, useRouter } from "vue-router"
import { useToast } from 'vue-toast-notification'
import axios from 'axios'

import Invoice from "./../classes/invoice"
import { calculateArr } from "./../classes/invoice_item"

import invoiceHeader from './../components/invoice_header.vue'
import itemSelector from './../components/item_selector.vue'
import invoiceItemsTable from './../components/invoice_items_table.vue'
import invoiceSummary from './../components/invoice_summary.vue'

const toast = useToast({
  position: 'top-right'
})

const route = useRoute()
const router = useRouter()

const invoiceId = route.params.id
const invoice = ref(new Invoice())
const items = ref<any[]>([])

const invoiceIsLoading = ref(true)
const itemsTableIsLoading = ref(true)

const getInvoice = async () => {
  invoiceIsLoading.value = true
  itemsTableIsLoading.value = true

  try {
    const r = await axios.get(`/invoice/${invoiceId}`)
    invoice.value = r.data.data
    items.value = calculateArr(r.data.data.Items)
  } catch (err) {
    toast.error('An unhandled exception occoured. Please check logs')
    console.error(err)
  }

  invoiceIsLoading.value = false
  itemsTableIsLoading.value = false
}

const refreshItems = async () => {
  //items.value = []
  itemsTableIsLoading.value = true

  try {
    const res = await axios.get(`/invoice/${invoiceId}/item`)
    if (res.status === 200) {
      items.value = calculateArr(res.data.data)
    }
  } catch (err) {
    toast.error('An unhandled exception occoured. Please check logs')
    console.error(err)
  }

  itemsTableIsLoading.value = false
}

const handleSubmit = () => {
  router.push({path: `/invoice/view/${invoiceId}`})
}

onMounted(() => {
  getInvoice()
})
</script>

<template>
  <invoiceHeader
    :invoice="invoice" />
  <itemSelector
    :invoiceId="invoiceId"
    @added="refreshItems()"/>
  <invoiceItemsTable
    :items="items"
    :isLoading="itemsTableIsLoading"
    @refresh="refreshItems()" />
  <invoiceSummary
    :items="items"
    :isLoading="itemsTableIsLoading"/>
  <button class="btn btn-primary" @click="handleSubmit">Preview (Danger)</button>
</template>