Feature/add historic bills

This commit is contained in:
Luca Haid
2024-11-06 12:39:14 +00:00
parent 13d14aab33
commit a696f60383
7 changed files with 111 additions and 2 deletions
@@ -0,0 +1,18 @@
Vue.component('historic-bill', {
//language=Vue
template: `
<tt-card>
<tt-table-crud>
<template v-slot:invoice_number="{ row }">
<a :href="'/HistoricBillData/' + row.invoice_number + '.pdf'" target="_blank">{{ row.invoice_number }}</a>
</template>
</tt-table-crud>
</tt-card>
`, data() {
return {
window: window, historyModal: false, historyModalId: null,
}
},
})