%PDF- %GIF98; %PNG;
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/www/admin1/resources/views/invoices/ajax/ |
Upload File : |
<!-- ROW START -->
<div class="row">
<!-- USER CARDS START -->
<div class="col-lg-12 col-md-12 mb-4 mb-xl-0 mb-lg-4 mb-md-0">
<h4 class="my-3 f-21 text-capitalize font-weight-bold">{{ $invoice->invoice_number }}</h4>
<div class="row">
<div class="col-xl-3 col-sm-12">
<x-cards.widget :title="__('modules.invoices.total')"
:value="number_format((float) $invoice->total, 2, '.', '')" icon="file-invoice-dollar" />
</div>
<div class="col-xl-3 col-sm-12">
<x-cards.widget :title="__('modules.invoices.total') . ' ' . __('modules.invoices.due')"
:value="number_format((float) $invoice->amountDue(), 2, '.', '')" icon="file-invoice-dollar" widgetId="remainingAmount" />
</div>
</div>
<h4 class="mt-5 mb-3 f-21 text-capitalize font-weight-bold">@lang('app.menu.payments')</h4>
<x-cards.data padding="false">
<x-table class="table-hover">
<x-slot name="thead">
<th>#</th>
<th>@lang('app.amount')</th>
<th>@lang('app.date')</th>
<th>@lang('app.gateway')</th>
<th class="text-right">@lang('app.action')</th>
</x-slot>
@forelse ($payments as $payment)
<tr id="row{{$payment->id}}">
<td>
@if(isset($payment->creditNote))
<a href="{{ route('creditnotes.show', [$payment->creditNote->id]) }}"
class="text-dark-grey">{{ $payment->creditNote->cn_number }}</a>
@else
--
@endif
</td>
<td>
{{ currency_format($payment->amount, $payment->currency->id) }}
</td>
<td>
{{ \Carbon\Carbon::parse($payment->paid_on)->translatedFormat(company()->date_format) }}
</td>
<td>
@if ($payment->gateway == 'Offline' && $payment->offlineMethods && $payment->offlineMethods->name)
{{ $payment->gateway ? $payment->gateway. ' ('. $payment->offlineMethods->name.')' : '--' }}
@else
{{ $payment->gateway ? $payment->gateway : '--' }}
@endif
</td>
<td class="text-right">
{{-- If payment done from payment gateway, then payment cannot be removed. --}}
@if ((is_null($payment->transaction_id) && is_null($payment->payload_id) && !$invoice->credit_note && $payment->gateway) || ($payment->gateway == 'Offline' || $payment->gateway == '') && !in_array('client', user_roles()))
<x-forms.button-secondary
onclick="deleteAppliedCredit({{ $payment->invoice_id }}, {{ $payment->id }})"
icon="trash">
@lang('app.remove')
</x-forms.button-secondary>
@endif
</td>
</tr>
@empty
<td colspan="5">
<x-cards.no-record icon="file-invoice-dollar" :message="__('messages.noRecordFound')" />
</td>
@endforelse
</x-table>
</x-cards.data>
</div>
</div>
<!-- ROW END -->
<script>
function deleteAppliedCredit(invoice_id, id) {
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.recoverRecord')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('messages.confirmDelete')",
cancelButtonText: "@lang('app.cancel')",
customClass: {
confirmButton: 'btn btn-primary mr-3',
cancelButton: 'btn btn-secondary'
},
showClass: {
popup: 'swal2-noanimation',
backdrop: 'swal2-noanimation'
},
buttonsStyling: false
}).then((result) => {
if (result.isConfirmed) {
var url = "{{ route('invoices.delete_applied_credit', [':id']) }}";
url = url.replace(':id', id);
$.easyAjax({
url: url,
type: 'POST',
container: '.content-wrapper',
blockUI: true,
redirect: true,
data: {
invoice_id: invoice_id,
_token: '{{ csrf_token() }}'
},
success: function(response) {
if (response.status == 'success') {
$('#remainingAmount').html(response.remainingAmount);
$('#row'+id).fadeOut(1000);
}
}
})
}
});
}
</script>