%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/projects/ajax/ |
Upload File : |
@php
$addInvoicePermission = user()->permission('add_invoices');
@endphp
<!-- ROW START -->
<div class="row py-3 py-lg-5 py-md-5">
@if (is_null($project->client_id))
<div class="col-lg-12 col-md-12">
<x-cards.no-record icon="user" :message="__('messages.assignClientFirst')" />
</div>
@else
<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">
@if (($addInvoicePermission == 'all' || $addInvoicePermission == 'added') && !$project->trashed())
<x-forms.link-primary
:link="route('invoices.create').'?project_id='.$project->id.'&client_id='.$project->client_id"
class="mr-3 openRightModal" icon="plus" data-redirect-url="{{ url()->full() }}">
@lang('modules.invoices.addInvoice')
</x-forms.link-primary>
@if (in_array('timelogs', user_modules()))
<x-forms.link-secondary class="mr-3 float-left mb-2 mb-lg-0 mb-md-0 openRightModal" icon="plus" :link="route('invoices.create', ['type' => 'timelog', 'project_id' => $project->id])">
@lang('app.create') @lang('app.timeLog') @lang('app.invoice')
</x-forms.link-secondary>
@endif
@endif
</div>
<!-- Add Task Export Buttons End -->
<form action="" id="filter-form">
<div class="d-block d-lg-flex d-md-flex my-3">
<!-- STATUS START -->
<div class="select-box py-2 px-0 mr-3">
<x-forms.label :fieldLabel="__('app.status')" fieldId="status" />
<select class="form-control select-picker" name="status" id="status" data-live-search="true"
data-size="8">
<option value="all">@lang('app.all')</option>
<option value="unpaid">@lang('app.unpaid')</option>
<option value="paid">@lang('app.paid')</option>
<option value="partial">@lang('app.partial')</option>
<option value="canceled">@lang('app.canceled')</option>
</select>
</div>
<!-- STATUS END -->
<!-- SEARCH BY TASK START -->
<div class="select-box py-2 px-lg-2 px-md-2 px-0 mr-3">
<x-forms.label fieldId="status" />
<div class="input-group bg-grey rounded">
<div class="input-group-prepend">
<span class="input-group-text bg-additional-grey">
<i class="fa fa-search f-13 text-dark-grey"></i>
</span>
</div>
<input type="text" class="form-control f-14 p-1 height-35 border" id="search-text-field"
placeholder="@lang('app.startTyping')">
</div>
</div>
<!-- SEARCH BY TASK END -->
<!-- RESET START -->
<div class="select-box d-flex py-2 px-lg-2 px-md-2 px-0 mt-4">
<x-forms.button-secondary class="btn-xs d-none height-35" id="reset-filters"
icon="times-circle">
@lang('app.clearFilters')
</x-forms.button-secondary>
</div>
<!-- RESET END -->
</div>
</form>
<!-- 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>
@endif
</div>
<!-- ROW END -->
@include('sections.datatable_js')
<script>
$('#invoices-table').on('preXhr.dt', function(e, settings, data) {
var projectID = "{{ $project->id }}";
var status = $('#status').val();
var searchText = $('#search-text-field').val();
data['projectID'] = projectID;
data['status'] = status;
data['searchText'] = searchText;
});
const showTable = () => {
window.LaravelDataTables["invoices-table"].draw(false);
}
$('#clientID, #project_id, #status')
.on('change keyup',
function() {
if ($('#project_id').val() != "all") {
$('#reset-filters').removeClass('d-none');
showTable();
} else if ($('#status').val() != "all") {
$('#reset-filters').removeClass('d-none');
showTable();
} else if ($('#clientID').val() != "all") {
$('#reset-filters').removeClass('d-none');
showTable();
} else {
$('#reset-filters').addClass('d-none');
showTable();
}
});
$('#search-text-field').on('keyup', function() {
if ($('#search-text-field').val() != "") {
$('#reset-filters').removeClass('d-none');
showTable();
}
});
$('#reset-filters').click(function() {
$('#filter-form')[0].reset();
$('.filter-box .select-picker').selectpicker("refresh");
$('#reset-filters').addClass('d-none');
showTable();
});
$('body').on('click', '.delete-table-row', function() {
var id = $(this).data('invoice-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.destroy', ':id') }}";
url = url.replace(':id', id);
var token = "{{ csrf_token() }}";
$.easyAjax({
type: 'POST',
url: url,
data: {
'_token': token,
'_method': 'DELETE'
},
success: function(response) {
if (response.status == "success") {
showTable();
}
}
});
}
});
});
$('body').on('click', '.unpaidAndPartialPaidCreditNote', function() {
var id = $(this).data('invoice-id');
Swal.fire({
title: "@lang('messages.confirmation.createCreditNotes')",
text: "@lang('messages.creditText')",
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('creditnotes.create') }}?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: '#invoices-table',
blockUI: true,
data: {
'_token': token
},
success: function(response) {
if (response.status == "success") {
window.LaravelDataTables["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: '#invoices-table',
blockUI: true,
url: url,
success: function(response) {
if (response.status == "success") {
$.unblockUI();
window.LaravelDataTables["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') }} ";
});
$('body').on('click', '#timelog-invoice', function() {
window.location.href = "{{ route('invoices.create', ['type' => 'timelog']) }} ";
});
$('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") {
showTable();
}
}
});
}
});
});
</script>