Ausgehende SEPA-Mandate einführen #183
This commit is contained in:
26
frontend/components/columnRenderings/outgoingSepaMandate.vue
Normal file
26
frontend/components/columnRenderings/outgoingSepaMandate.vue
Normal file
@@ -0,0 +1,26 @@
|
||||
<script setup>
|
||||
const props = defineProps({
|
||||
row: {
|
||||
type: Object,
|
||||
required: true,
|
||||
default: {}
|
||||
},
|
||||
inShow: {
|
||||
type: Boolean,
|
||||
default: false
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div v-if="props.row.outgoingsepamandate">
|
||||
<nuxt-link
|
||||
v-if="props.inShow"
|
||||
:to="`/standardEntity/outgoingsepamandates/show/${props.row.outgoingsepamandate.id}`"
|
||||
>
|
||||
{{ props.row.outgoingsepamandate.reference }}
|
||||
</nuxt-link>
|
||||
<span v-else>{{ props.row.outgoingsepamandate.reference }}</span>
|
||||
</div>
|
||||
<span v-else>-</span>
|
||||
</template>
|
||||
Reference in New Issue
Block a user