%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/expenses/ |
Upload File : |
@extends('layouts.app')
@push('styles')
<style>
.customSequence .btn {
border: none;
}
</style>
@endpush
@section('content')
<div class="content-wrapper ssssssssssss">
<!-- CREATE INVOICE START -->
<div class="bg-white rounded b-shadow-4 create-inv">
<!-- HEADING START -->
<div class="px-lg-4 px-md-4 px-3 py-3">
<h4 class="mb-0 f-21 font-weight-normal text-capitalize">@lang('app.estimate') @lang('app.details')</h4>
</div>
<!-- HEADING END -->
<hr class="m-0 border-top-grey">
<!-- FORM START -->
<x-form class="c-inv-form" id="saveInvoiceForm">
@method('PUT')
<!-- INVOICE NUMBER, DATE, DUE DATE, FREQUENCY START -->
<div class="row px-lg-4 px-md-4 px-3 py-3">
<!-- INVOICE NUMBER START -->
<div class="col-md-6 col-lg-4">
<div class="form-group mb-lg-0 mb-md-0 mb-4">
<label class="f-14 text-dark-grey mb-12 text-capitalize"
for="usr">@lang('modules.estimates.estimatesNumber')</label>
<div class="input-group">
<input type="text" name="estimate_number" id="estimate_number" class="form-control height-35 f-15 readonly-background" readonly value="{{ $estimate->estimate_number }}" >
</div>
</div>
</div>
<!-- INVOICE NUMBER END -->
<!-- INVOICE DATE START -->
<div class="col-md-6 col-lg-4">
<div class="form-group mb-lg-0 mb-md-0 mb-4">
<x-forms.label fieldId="due_date" :fieldLabel="__('modules.estimates.validTill')">
</x-forms.label>
<div class="input-group">
<input type="text" id="valid_till" name="valid_till"
class="px-6 position-relative text-dark font-weight-normal form-control height-35 rounded p-0 text-left f-15"
placeholder="@lang('placeholders.date')"
value="{{ $estimate->valid_till->format(company()->date_format) }}">
</div>
</div>
</div>
<!-- INVOICE DATE END -->
<!-- FREQUENCY START -->
<div class="col-md-6 col-lg-4">
<div class="form-group c-inv-select mb-lg-0 mb-md-0 mb-4">
<x-forms.label fieldId="currency_id" :fieldLabel="__('modules.invoices.currency')">
</x-forms.label>
<div class="select-others height-35 rounded">
<select class="form-control select-picker" name="currency_id" id="currency_id">
@foreach ($currencies as $currency)
<option @if($estimate->currency_id == $currency->id) selected @endif
value="{{ $currency->id }}">
{{ $currency->currency_code . ' (' . $currency->currency_symbol . ')' }}
</option>
@endforeach
</select>
</div>
</div>
</div>
<!-- FREQUENCY END -->
</div>
<hr class="m-0 border-top-grey">
<div class="row px-lg-4 px-md-4 px-3 pt-3">
<!-- CLIENT START -->
<div class="col-md-6">
<div class="form-group c-inv-select mb-4">
<x-forms.label fieldId="client_id" :fieldLabel="__('app.client')" fieldRequired="true">
</x-forms.label>
<select class="form-control select-picker" data-live-search="true" data-size="8"
name="client_id" id="client_id">
<option value="">--</option>
@foreach ($clients as $client)
<x-user-option :user="$client" :selected="$client->id == $estimate->client_id"/>
@endforeach
</select>
</div>
</div>
<!-- CLIENT END -->
<!-- CLIENT START -->
<div class="col-md-6">
<div class="form-group c-inv-select mb-4">
<x-forms.label fieldId="client_id" :fieldLabel="__('app.status')">
</x-forms.label>
<select class="form-control select-picker" name="status" id="status">
<option
@if($estimate->status == 'accepted') selected @endif
value="accepted">@lang('modules.estimates.accepted')
</option>
<option
@if($estimate->status == 'waiting') selected @endif
value="waiting">@lang('modules.estimates.waiting')
</option>
<option
@if($estimate->status == 'declined') selected @endif
value="declined">@lang('modules.estimates.declined')
</option>
@if($estimate->status == 'draft')
<option
@if($estimate->status == 'draft') selected @endif
value="draft">@lang('modules.invoices.draft')
</option>
@endif
</select>
</div>
</div>
<!-- CLIENT END -->
</div>
<!-- INVOICE NUMBER, DATE, DUE DATE, FREQUENCY END -->
<hr class="m-0 border-top-grey">
<div class="d-flex px-4 py-3">
<div class="form-group">
<select class="form-control select-picker" data-live-search="true" data-size="8" id="add-products">
<option value="">{{__('app.select') . ' ' . __('app.product') }}</option>
@foreach ($products as $item)
<option
data-content="{{ $item->name }} <a href='javascript:;' class='p-1 badge badge-secondary ml-2'><i class='fa fa-plus mr-1'></i>{{ __('app.add') }}</a>"
value="{{ $item->id }}">{{ $item->name }}</option>
@endforeach
</select>
</div>
</div>
<div id="sortable">
@foreach($estimate->items as $key => $item)
<!-- DESKTOP DESCRIPTION TABLE START -->
<div class="d-flex px-4 py-3 c-inv-desc item-row">
<div class="c-inv-desc-table w-100 d-lg-flex d-md-flex d-block">
<table width="100%">
<tbody>
<tr class="text-dark-grey font-weight-bold f-14">
<td width="50%" class="border-0 inv-desc-mbl btlr">@lang('app.description')</td>
<td width="10%" class="border-0" align="right">@lang("modules.invoices.qty")</td>
<td width="10%" class="border-0" align="right">@lang("modules.invoices.unitPrice")</td>
<td width="13%" class="border-0" align="right">@lang('modules.invoices.tax')</td>
<td width="17%" class="border-0 bblr-mbl" align="right">@lang('modules.invoices.amount')</td>
</tr>
<tr>
<td class="border-bottom-0 btrr-mbl btlr">
<input type="text" class="f-14 border-0 w-100 item_name" name="item_name[]"
placeholder="@lang('modules.expenses.itemName')" value="{{ $item->item_name }}">
</td>
<td class="border-bottom-0 d-block d-lg-none d-md-none">
<input type="text" class="f-14 border-0 w-100 mobile-description" placeholder="@lang('placeholders.invoices.description')" name="item_summary[]" value="{{ $item->item_summary }}">
</td>
<td class="border-bottom-0">
<input type="number" min="1" class="f-14 border-0 w-100 text-right quantity" value="{{ $item->quantity }}"
name="quantity[]">
</td>
<td class="border-bottom-0">
<input type="number" min="1" class="f-14 border-0 w-100 text-right cost_per_item"
placeholder="0.00" value="{{ $item->unit_price }}" name="cost_per_item[]">
</td>
<td class="border-bottom-0">
<div class="select-others height-35 rounded border-0">
<select id="multiselect" name="taxes[{{ $key }}][]" multiple="multiple"
class="select-picker type customSequence border-0" data-size="3">
@foreach ($taxes as $tax)
<option data-rate="{{ $tax->rate_percent }}"
@if (isset($item->taxes) && array_search($tax->id, json_decode($item->taxes)) !== false)
selected
@endif
value="{{ $tax->id }}">{{ $tax->tax_name }}:
{{ $tax->rate_percent }}%</option>
@endforeach
</select>
</div>
</td>
<td rowspan="2" align="right" valign="top" class="bg-amt-grey btrr-bbrr">
<span class="amount-html">{{ number_format((float)$item->amount, 2, '.', '') }}</span>
<input type="hidden" class="amount" name="amount[]" value="{{ $item->amount }}">
</td>
</tr>
<tr class="d-none d-md-block d-lg-table-row">
<td colspan="4" class="dash-border-top bblr">
<input type="text" class="f-14 border-0 w-100 desktop-description" name="item_summary[]"
placeholder="@lang('placeholders.invoices.description')" value="{{ $item->item_summary }}">
</td>
</tr>
</tbody>
</table>
<a href="javascript:;" class="d-flex align-items-center justify-content-center ml-3 remove-item"><i
class="fa fa-times-circle f-20 text-lightest"></i></a>
</div>
</div>
<!-- DESKTOP DESCRIPTION TABLE END -->
@endforeach
</div>
<!-- ADD ITEM START-->
<div class="row px-lg-4 px-md-4 px-3 pb-3 pt-0 mb-3 mt-2">
<div class="col-md-12">
<a class="f-15 f-w-500" href="javascript:;" id="add-item"><i
class="icons icon-plus font-weight-bold mr-1"></i>@lang('modules.invoices.addItem')</a>
</div>
</div>
<!-- ADD ITEM END-->
<hr class="m-0 border-top-grey">
<!-- TOTAL, DISCOUNT START -->
<div class="d-flex px-lg-4 px-md-4 px-3 pb-3 c-inv-total">
<table width="100%" class="text-right f-14 text-capitalize">
<tbody>
<tr>
<td width="50%" class="border-0 d-lg-table d-md-table d-none"></td>
<td width="50%" class="p-0 border-0">
<table width="100%">
<tbody>
<tr>
<td colspan="2" class="border-top-0 text-dark-grey">
@lang('modules.invoices.subTotal')</td>
<td width="30%" class="border-top-0 sub-total">{{ number_format((float)$estimate->sub_total, 2, '.', '') }}</td>
<input type="hidden" class="sub-total-field" name="sub_total" value="{{ $estimate->sub_total }}">
</tr>
<tr>
<td width="30%" class="text-dark-grey">@lang('modules.invoices.discount')
</td>
<td width="30%" style="padding: 5px;">
<table width="100%">
<tbody>
<tr>
<td width="50%" class="c-inv-sub-padding">
<input type="number" min="0" name="discount_value"
class="f-14 border-0 w-100 text-right discount_value"
placeholder="0" value="{{ $estimate->discount }}">
</td>
<td width="50%" align="left" class="c-inv-sub-padding">
<div
class="select-others select-tax height-35 rounded border-0">
<select class="form-control select-picker"
id="discount_type" name="discount_type">
<option @if($estimate->discount_type == 'percent') selected @endif value="percent">%</option>
<option @if($estimate->discount_type == 'fixed') selected @endif value="fixed">
@lang('modules.invoices.amount')</option>
</select>
</div>
</td>
</tr>
</tbody>
</table>
</td>
<td><span id="discount_amount">{{ number_format((float)$estimate->discount, 2, '.', '') }}</span></td>
</tr>
<tr>
<td>@lang('modules.invoices.tax')</td>
<td colspan="2" class="p-0">
<table width="100%" id="invoice-taxes">
<tr>
<td colspan="2"><span class="tax-percent">0.00</span></td>
</tr>
</table>
</td>
</tr>
<tr class="bg-amt-grey f-16 f-w-500">
<td colspan="2">@lang('modules.invoices.total')</td>
<td><span class="total">{{ number_format((float)$estimate->total, 2, '.', '') }}</span></td>
<input type="hidden" class="total-field" name="total" value="{{ round($estimate->total, 2) }}">
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</div>
<!-- TOTAL, DISCOUNT END -->
<!-- NOTE AND TERMS AND CONDITIONS START -->
<div class="d-flex flex-wrap px-lg-4 px-md-4 px-3 py-3">
<div class="col-md-6 col-sm-12 c-inv-note-terms p-0 mb-lg-0 mb-md-0 mb-3">
<label class="f-14 text-dark-grey mb-12 text-capitalize w-100"
for="usr">@lang('modules.invoices.note')</label>
<textarea class="form-control" name="note" id="note" rows="4"
placeholder="@lang('placeholders.invoices.note')">{{ $estimate->note }}</textarea>
</div>
<div class="col-md-6 col-sm-12 p-0 c-inv-note-terms">
<label class="f-14 text-dark-grey mb-12 text-capitalize w-100"
for="usr">@lang('modules.invoiceSettings.invoiceTerms')</label>
{!! nl2br($invoiceSetting->invoice_terms) !!}
</div>
</div>
<!-- NOTE AND TERMS AND CONDITIONS END -->
<!-- CANCEL SAVE SEND START -->
<div class="px-lg-4 px-md-4 px-3 py-3 c-inv-btns">
<button type="button"
class="btn-cancel rounded mt-3 mt-lg-0 mt-md-0 mr-0 mr-lg-3 mr-md-3 f-15">@lang('app.cancel')</button>
<div class="d-flex">
<x-forms.button-primary class="save-form" icon="check">@lang('app.save')</x-forms.button-primary>
</div>
</div>
<!-- CANCEL SAVE SEND END -->
</x-form>
<!-- FORM END -->
</div>
<!-- CREATE INVOICE END -->
</div>
@endsection
@push('scripts')
<script>
const dp1 = datepicker('#valid_till', {
position: 'bl',
dateSelected: new Date("{{ str_replace('-', '/', $estimate->valid_till) }}"),
...datepickerConfig
});
$('#add-products').on('changed.bs.select', function (e, clickedIndex, isSelected, previousValue) {
e.stopImmediatePropagation()
var id = $(this).val();
if (previousValue != id && id != '') {
addProduct(id);
}
});
function addProduct(id) {
var currencyId = $('#currency_id').val();
$.easyAjax({
url:"{{ route('invoices.add_item') }}",
type: "GET",
data: { id: id, currencyId: currencyId },
success: function(response) {
if($('input[name="item_name[]"]').val() == ''){
$("#sortable .item-row").remove();
}
$(response.view).hide().appendTo("#sortable").fadeIn(500);
calculateTotal();
var noOfRows = $(document).find('#sortable .item-row').length;
var i = $(document).find('.item_name').length-1;
var itemRow = $(document).find('#sortable .item-row:nth-child('+noOfRows+') select.type');
itemRow.attr('id', 'multiselect'+i);
itemRow.attr('name', 'taxes['+i+'][]');
$(document).find('#multiselect'+i).selectpicker();
}
});
}
$(document).on('click', '#add-item', function() {
var i = $(document).find('.item_name').length;
var item = ' <div class="d-flex px-4 py-3 c-inv-desc item-row">'
+'<div class="c-inv-desc-table w-100 d-lg-flex d-md-flex d-block">'
+'<table width="100%">'
+'<tbody>'
+'<tr class="text-dark-grey font-weight-bold f-14">'
+'<td width="50%" class="border-0 inv-desc-mbl btlr">@lang('app.description')</td>'
+'<td width="10%" class="border-0" align="right">@lang("modules.invoices.qty")</td>'
+'<td width="10%" class="border-0" align="right">@lang("modules.invoices.unitPrice")</td>'
+'<td width="13%" class="border-0" align="right">@lang('modules.invoices.tax')</td>'
+'<td width="17%" class="border-0 bblr-mbl" align="right">@lang('modules.invoices.amount')</td>'
+'</tr>'
+'<tr>'
+'<td class="border-bottom-0 btrr-mbl btlr">'
+'<input type="text" class="f-14 border-0 w-100 item_name" name="item_name[]" placeholder="@lang('modules.expenses.itemName')">'
+'</td>'
+'<td class="border-bottom-0 d-block d-lg-none d-md-none">'
+'<input type="text" class="f-14 border-0 w-100 mobile-description" name="item_summary[]" placeholder="@lang('placeholders.invoices.description')">'
+'</td>'
+'<td class="border-bottom-0">'
+'<input type="number" min="1" class="f-14 border-0 w-100 text-right quantity" value="1" name="quantity[]">'
+'</td>'
+'<td class="border-bottom-0">'
+'<input type="number" min="1" class="f-14 border-0 w-100 text-right cost_per_item" placeholder="0.00" value="0" name="cost_per_item[]">'
+'</td>'
+'<td class="border-bottom-0">'
+'<div class="select-others height-35 rounded border-0">'
+'<select id="multiselect'+i+'" name="taxes['+i+'][]" multiple="multiple" class="select-picker type customSequence" data-size="3">'
@foreach ($taxes as $tax)
+'<option data-rate="{{ $tax->rate_percent }}" value="{{ $tax->id }}">{{ $tax->tax_name }}: {{ $tax->rate_percent }}%</option>'
@endforeach
+'</select>'
+'</div>'
+'</td>'
+'<td rowspan="2" align="right" valign="top" class="bg-amt-grey btrr-bbrr">'
+'<span class="amount-html">0.00</span>'
+'<input type="hidden" class="amount" name="amount[]" value="0">'
+'</td>'
+'</tr>'
+'<tr class="d-none d-md-table-row d-lg-table-row">'
+'<td colspan="4" class="dash-border-top bblr">'
+'<input type="text" class="f-14 border-0 w-100 desktop-description" name="item_summary[]" placeholder="@lang('placeholders.invoices.description')">'
+'</td>'
+'</tr>'
+'</tbody>'
+'</table>'
+'</div>'
+'<a href="javascript:;" class="d-flex align-items-center justify-content-center ml-3 remove-item"><i class="fa fa-times-circle f-20 text-lightest"></i></a>'
+'</div>';
$(item).hide().appendTo("#sortable").fadeIn(500);
$('#multiselect'+i).selectpicker();
});
$('#saveInvoiceForm').on('click','.remove-item', function () {
$(this).closest('.item-row').fadeOut(300, function() {
$(this).remove();
$('select.customSequence').each(function(index){
$(this).attr('name', 'taxes['+index+'][]');
$(this).attr('id', 'multiselect'+index+'');
});
calculateTotal();
});
});
$('.save-form').click(function(){
if(KTUtil.isMobileDevice()) {
$('.desktop-description').remove();
} else {
$('.mobile-description').remove();
}
calculateTotal();
var discount = $('#discount_amount').html();
var total = $('.sub-total-field').val();
if(parseFloat(discount) > parseFloat(total)){
Swal.fire({
icon: 'error',
text: "{{ __('messages.discountExceed') }}",
customClass: {
confirmButton: 'btn btn-primary',
},
showClass: {
popup: 'swal2-noanimation',
backdrop: 'swal2-noanimation'
},
buttonsStyling: false
});
return false;
}
$.easyAjax({
url: "{{route('estimates.update', $estimate->id)}}",
container:'#saveInvoiceForm',
type: "POST",
blockUI: true,
redirect: true,
data: $('#saveInvoiceForm').serialize()
})
});
</script>
<script>
$('#saveInvoiceForm').on('click', '.remove-item', function() {
$(this).closest('.item-row').fadeOut(300, function() {
$(this).remove();
$('select.customSequence').each(function(index) {
$(this).attr('name', 'taxes[' + index + '][]');
$(this).attr('id', 'multiselect' + index + '');
});
calculateTotal();
});
});
$('#saveInvoiceForm').on('keyup', '.quantity,.cost_per_item,.item_name, .discount_value', function() {
var quantity = $(this).closest('.item-row').find('.quantity').val();
var perItemCost = $(this).closest('.item-row').find('.cost_per_item').val();
var amount = (quantity * perItemCost);
$(this).closest('.item-row').find('.amount').val(decimalupto2(amount));
$(this).closest('.item-row').find('.amount-html').html(decimalupto2(amount));
calculateTotal();
});
$('#saveInvoiceForm').on('change', '.type, #discount_type, #calculate_tax', function() {
var quantity = $(this).closest('.item-row').find('.quantity').val();
var perItemCost = $(this).closest('.item-row').find('.cost_per_item').val();
var amount = (quantity * perItemCost);
$(this).closest('.item-row').find('.amount').val(decimalupto2(amount));
$(this).closest('.item-row').find('.amount-html').html(decimalupto2(amount));
calculateTotal();
});
$('#saveInvoiceForm').on('input', '.quantity', function() {
var quantity = $(this).closest('.item-row').find('.quantity').val();
var perItemCost = $(this).closest('.item-row').find('.cost_per_item').val();
var amount = (quantity * perItemCost);
$(this).closest('.item-row').find('.amount').val(decimalupto2(amount));
$(this).closest('.item-row').find('.amount-html').html(decimalupto2(amount));
calculateTotal();
});
calculateTotal();
</script>
@endpush