%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/recurring-invoices/ajax/ |
Upload File : |
@php
$addInvoicePermission = user()->permission('add_invoices');
@endphp
<!-- ROW START -->
<div class="row py-5">
<div class="col-lg-12 col-md-12 mb-4 mb-xl-0 mb-lg-4">
<!-- Add Task Export Buttons Start -->
<div class="d-flex" id="table-actions">
</div>
<!-- Add Task Export Buttons End -->
<!-- Task Box Start -->
<div class="d-flex flex-column w-tables rounded mt-3 bg-white">
{!! $dataTable->table(['class' => 'table table-hover border-0 w-100']) !!}
</div>
<!-- Task Box End -->
</div>
</div>
<!-- ROW END -->
@include('sections.datatable_js')
<script>
$('#recurring-invoices-table').on('preXhr.dt', function(e, settings, data) {
var projectID = "{{ $invoice->project_id }}";
var recurringID = "{{ $recurringID }}";
data['projectID'] = projectID;
data['recurringID'] = recurringID;
});
const showTable = () => {
window.LaravelDataTables["recurring-invoices-table"].draw(false);
}
$('body').on('click', '.cancel-invoice', function() {
var id = $(this).data('invoice-id');
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.invoiceText')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('app.yes')",
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.update_status',':id') }}";
url = url.replace(':id', id);
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'GET',
url: url,
success: function(response) {
if (response.status == "success") {
window.LaravelDataTables["recurring-invoices-table"].draw(false);
}
}
});
}
});
});
$('body').on('click', '.unpaidAndPartialPaidCreditNote', function(){
var id = $(this).data('invoice-id');
Swal.fire({
title: "@lang('messages.sweetAlertTitle')",
text: "@lang('messages.creditText')",
icon: 'warning',
showCancelButton: true,
focusConfirm: false,
confirmButtonText: "@lang('messages.confirmCreate')",
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('creditnotes.convert-invoice',':id') }}";
url = url.replace(':id', id);
location.href = url;
}
});
});
$('body').on('click', '.sendButton', function() {
var id = $(this).data('invoice-id');
var url = "{{ route('invoices.send_invoice', ':id') }}";
url = url.replace(':id', id);
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
container: '#recurring-invoices-table',
blockUI: true,
data: {
'_token': token
},
success: function(response) {
if (response.status == "success") {
window.LaravelDataTables["recurring-invoices-table"].draw(false);
}
}
});
});
$('body').on('click', '.reminderButton', function() {
var id = $(this).data('invoice-id');
var url = "{{ route('invoices.payment_reminder', ':id') }}";
url = url.replace(':id', id);
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'GET',
container: '#recurring-invoices-table',
blockUI: true,
url: url,
success: function(response) {
if (response.status == "success") {
$.unblockUI();
window.LaravelDataTables["recurring-invoices-table"].draw(false);
}
}
});
});
$('body').on('click', '.invoice-upload', function() {
var invoiceId = $(this).data('invoice-id');
const url = "{{ route('invoices.file_upload') }}?invoice_id=" + invoiceId;
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
});
$('body').on('click', '#recurring-invoice', function() {
window.location.href = "{{ route('recurring-invoices.index')}} ";
});
function toggleShippingAddress(invoiceId) {
let url = "{{ route('invoices.toggle_shipping_address', ':id') }}";
url = url.replace(':id', invoiceId);
$.easyAjax({
url: url,
type: 'GET',
success: function (response) {
if (response.status === 'success') {
window.LaravelDataTables["recurring-invoices-table"].draw(false);
}
}
})
}
function addShippingAddress(invoiceId) {
let url = "{{ route('invoices.shipping_address_modal', ':id') }}";
url = url.replace(':id', invoiceId);
$(MODAL_LG + ' ' + MODAL_HEADING).html('...');
$.ajaxModal(MODAL_LG, url);
}
</script>