aa
This commit is contained in:
@@ -87,7 +87,8 @@
|
||||
v-if="
|
||||
((registration.id && registration.user?.id == currentUserId && isCurrentEvent) ||
|
||||
hasAnyAuthority(['ROLE_ADMIN', 'ROLE_COUNTER'])) &&
|
||||
registration.active !== false
|
||||
registration.active !== false &&
|
||||
(event.active || (event.editable && hasAnyAuthority(['ROLE_COUNTER'])) || hasAnyAuthority(['ROLE_ADMIN']))
|
||||
"
|
||||
v-b-modal.removeEntity
|
||||
>
|
||||
@@ -169,7 +170,7 @@
|
||||
<font-awesome-icon icon="sync"></font-awesome-icon> <span>Rozlicz wydarzenie</span>
|
||||
</button>
|
||||
<router-link
|
||||
v-if="event.id && event.charged == false"
|
||||
v-if="event.id && event.paid == false"
|
||||
:to="{ name: 'TransactionFieldPayment', params: { paymentForFieldByEventId: event.id } }"
|
||||
custom
|
||||
v-slot="{ navigate }"
|
||||
@@ -185,7 +186,7 @@
|
||||
</router-link>
|
||||
|
||||
<router-link
|
||||
v-if="event.transactions?.length > 0 && event.editable"
|
||||
v-if="event.charged && event.editable"
|
||||
:to="{ name: 'TransactionPaymentsForTransaction', params: { paymentsForTransactionId: event.chargeTransactionId } }"
|
||||
custom
|
||||
v-slot="{ navigate }"
|
||||
|
||||
Reference in New Issue
Block a user