Feature/add historic bills
This commit is contained in:
@@ -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,
|
||||
}
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user