mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-28 12:11:08 -04:00
121 lines
2.8 KiB
Vue
121 lines
2.8 KiB
Vue
I
|
|
<template>
|
|
<div class="h-screen h-screen-ios overflow-y-auto min-h-0">
|
|
<div class="bg-gradient-to-r from-primary-500 to-primary-400 h-5"></div>
|
|
|
|
<div
|
|
class="
|
|
relative
|
|
p-6
|
|
pb-28
|
|
px-4
|
|
md:px-6
|
|
w-full
|
|
md:w-auto md:max-w-xl
|
|
mx-auto
|
|
"
|
|
>
|
|
<BasePageHeader :title="pageTitle || ''">
|
|
<template #actions>
|
|
<div
|
|
class="
|
|
flex flex-col
|
|
md:flex-row
|
|
absolute
|
|
md:relative
|
|
bottom-2
|
|
left-0
|
|
px-4
|
|
md:px-0
|
|
w-full
|
|
md:space-x-4 md:space-y-0
|
|
space-y-2
|
|
"
|
|
>
|
|
<a :href="shareableLink" target="_blank" class="block w-full">
|
|
<BaseButton
|
|
variant="primary-outline"
|
|
class="justify-center w-full"
|
|
>
|
|
{{ $t('general.download_pdf') }}
|
|
</BaseButton>
|
|
</a>
|
|
|
|
<BaseButton
|
|
v-if="
|
|
invoiceData &&
|
|
invoiceData.paid_status !== 'PAID' &&
|
|
invoiceData.payment_module_enabled
|
|
"
|
|
variant="primary"
|
|
class="justify-center"
|
|
@click="payInvoice"
|
|
>
|
|
{{ $t('general.pay_invoice') }}
|
|
</BaseButton>
|
|
</div>
|
|
</template>
|
|
</BasePageHeader>
|
|
|
|
<InvoiceInformationCard :invoice="invoiceData" />
|
|
|
|
<div
|
|
v-if="!customerLogo"
|
|
class="flex items-center justify-center mt-4 text-gray-500 font-normal"
|
|
>
|
|
Powered by
|
|
<a href="https://craterapp.com" target="_blank">
|
|
<img :src="getLogo()" class="h-4 ml-1 mb-1" />
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import axios from 'axios'
|
|
import { ref, reactive, computed, onMounted } from 'vue'
|
|
import { useRoute, useRouter } from 'vue-router'
|
|
import InvoiceInformationCard from '@/scripts/components/InvoiceInformationCard.vue'
|
|
|
|
let invoiceData = ref(null)
|
|
const route = useRoute()
|
|
const router = useRouter()
|
|
|
|
loadInvoice()
|
|
|
|
async function loadInvoice() {
|
|
let res = await axios.get(`/customer/invoices/${route.params.hash}`)
|
|
invoiceData.value = res.data.data
|
|
}
|
|
|
|
const shareableLink = computed(() => {
|
|
return route.path + '?pdf'
|
|
})
|
|
|
|
function getLogo() {
|
|
const imgUrl = new URL('/img/crater-logo-gray.png', import.meta.url)
|
|
return imgUrl
|
|
}
|
|
|
|
const customerLogo = computed(() => {
|
|
if (window.customer_logo) {
|
|
return window.customer_logo
|
|
}
|
|
|
|
return false
|
|
})
|
|
|
|
const pageTitle = computed(() => invoiceData.value?.invoice_number)
|
|
|
|
function payInvoice() {
|
|
router.push({
|
|
name: 'invoice.pay',
|
|
params: {
|
|
hash: route.params.hash,
|
|
company: invoiceData.value.company.slug,
|
|
},
|
|
})
|
|
}
|
|
</script>
|