mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #7078 from turbo124/v5-develop
Show cancellation dialogue
This commit is contained in:
commit
0dfb0351d0
@ -3981,7 +3981,7 @@ $LANG = array(
|
||||
'list_of_recurring_invoices' => 'List of recurring invoices',
|
||||
'details_of_recurring_invoice' => 'Here are some details about recurring invoice',
|
||||
'cancellation' => 'Cancellation',
|
||||
'about_cancellation' => 'In case you want to stop the recurring invoice, please click the request the cancellation.',
|
||||
'about_cancellation' => 'In case you want to stop the recurring invoice, please click to request the cancellation.',
|
||||
'cancellation_warning' => 'Warning! You are requesting a cancellation of this service. Your service may be cancelled with no further notification to you.',
|
||||
'cancellation_pending' => 'Cancellation pending, we\'ll be in touch!',
|
||||
'list_of_payments' => 'List of payments',
|
||||
|
@ -76,10 +76,10 @@
|
||||
</div>
|
||||
@endif
|
||||
|
||||
{{-- @if(is_null($invoice->subscription_id) || optional($invoice->subscription)->allow_cancellation) --}}
|
||||
@if($invoice->subscription && optional($invoice->subscription)->allow_cancellation)
|
||||
{{-- INV2-591 --}}
|
||||
@if(false)
|
||||
<div class="bg-white shadow sm:rounded-lg mt-4 hidden">
|
||||
{{-- @if(false) --}}
|
||||
<div class="bg-white shadow sm:rounded-lg mt-4">
|
||||
<div class="px-4 py-5 sm:p-6">
|
||||
<div class="sm:flex sm:items-start sm:justify-between">
|
||||
<div>
|
||||
|
Loading…
Reference in New Issue
Block a user