167 lines
7.0 KiB
PHP
167 lines
7.0 KiB
PHP
@extends('layouts.app')
|
|
@section('title', __( 'sale.drafts'))
|
|
@section('content')
|
|
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header no-print">
|
|
<h1 class="tw-text-xl md:tw-text-3xl tw-font-bold tw-text-black">@lang('sale.drafts')
|
|
</h1>
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content no-print">
|
|
@component('components.filters', ['title' => __('report.filters')])
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('sell_list_filter_location_id', __('purchase.business_location') . ':') !!}
|
|
|
|
{!! Form::select('sell_list_filter_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all') ]); !!}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('sell_list_filter_customer_id', __('contact.customer') . ':') !!}
|
|
{!! Form::select('sell_list_filter_customer_id', $customers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all')]); !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('sell_list_filter_date_range', __('report.date_range') . ':') !!}
|
|
{!! Form::text('sell_list_filter_date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly']); !!}
|
|
</div>
|
|
</div>
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('created_by', __('report.user') . ':') !!}
|
|
{!! Form::select('created_by', $sales_representative, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
|
|
</div>
|
|
</div>
|
|
@endcomponent
|
|
@component('components.widget', ['class' => 'box-primary'])
|
|
@slot('tool')
|
|
<div class="box-tools">
|
|
<a class="tw-dw-btn tw-bg-gradient-to-r tw-from-indigo-600 tw-to-blue-500 tw-font-bold tw-text-white tw-border-none tw-rounded-full pull-right"
|
|
href="{{action([\App\Http\Controllers\SellController::class, 'create'], ['status' => 'draft'])}}">
|
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor"
|
|
stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
|
class="icon icon-tabler icons-tabler-outline icon-tabler-plus">
|
|
<path stroke="none" d="M0 0h24v24H0z" fill="none" />
|
|
<path d="M12 5l0 14" />
|
|
<path d="M5 12l14 0" />
|
|
</svg> @lang('lang_v1.add_draft')
|
|
</a>
|
|
</div>
|
|
@endslot
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-striped ajax_view" id="sell_table">
|
|
<thead>
|
|
<tr>
|
|
<th>@lang('messages.date')</th>
|
|
<th>@lang('purchase.ref_no')</th>
|
|
<th>@lang('sale.customer_name')</th>
|
|
<th>@lang('lang_v1.contact_no')</th>
|
|
<th>@lang('sale.location')</th>
|
|
<th>@lang('lang_v1.total_items')</th>
|
|
<th>@lang('lang_v1.added_by')</th>
|
|
<th>@lang('messages.action')</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
@endcomponent
|
|
</section>
|
|
<!-- /.content -->
|
|
@stop
|
|
@section('javascript')
|
|
<script type="text/javascript">
|
|
$(document).ready( function(){
|
|
$('#sell_list_filter_date_range').daterangepicker(
|
|
dateRangeSettings,
|
|
function (start, end) {
|
|
$('#sell_list_filter_date_range').val(start.format(moment_date_format) + ' ~ ' + end.format(moment_date_format));
|
|
sell_table.ajax.reload();
|
|
}
|
|
);
|
|
$('#sell_list_filter_date_range').on('cancel.daterangepicker', function(ev, picker) {
|
|
$('#sell_list_filter_date_range').val('');
|
|
sell_table.ajax.reload();
|
|
});
|
|
sell_table = $('#sell_table').DataTable({
|
|
processing: true,
|
|
serverSide: true,
|
|
fixedHeader:false,
|
|
aaSorting: [[0, 'desc']],
|
|
"ajax": {
|
|
"url": '/sells/draft-dt?is_quotation=0',
|
|
"data": function ( d ) {
|
|
if($('#sell_list_filter_date_range').val()) {
|
|
var start = $('#sell_list_filter_date_range').data('daterangepicker').startDate.format('YYYY-MM-DD');
|
|
var end = $('#sell_list_filter_date_range').data('daterangepicker').endDate.format('YYYY-MM-DD');
|
|
d.start_date = start;
|
|
d.end_date = end;
|
|
}
|
|
|
|
if($('#sell_list_filter_location_id').length) {
|
|
d.location_id = $('#sell_list_filter_location_id').val();
|
|
}
|
|
d.customer_id = $('#sell_list_filter_customer_id').val();
|
|
|
|
if($('#created_by').length) {
|
|
d.created_by = $('#created_by').val();
|
|
}
|
|
}
|
|
},
|
|
columnDefs: [ {
|
|
"targets": 7,
|
|
"orderable": false,
|
|
"searchable": false
|
|
} ],
|
|
columns: [
|
|
{ data: 'transaction_date', name: 'transaction_date' },
|
|
{ data: 'invoice_no', name: 'invoice_no'},
|
|
{ data: 'conatct_name', name: 'conatct_name'},
|
|
{ data: 'mobile', name: 'contacts.mobile'},
|
|
{ data: 'business_location', name: 'bl.name'},
|
|
{ data: 'total_items', name: 'total_items', "searchable": false},
|
|
{ data: 'added_by', name: 'added_by'},
|
|
{ data: 'action', name: 'action'}
|
|
],
|
|
"fnDrawCallback": function (oSettings) {
|
|
__currency_convert_recursively($('#purchase_table'));
|
|
}
|
|
});
|
|
$(document).on('change', '#sell_list_filter_location_id, #sell_list_filter_customer_id, #created_by', function() {
|
|
sell_table.ajax.reload();
|
|
});
|
|
|
|
$(document).on('click', 'a.convert-to-proforma', function(e){
|
|
e.preventDefault();
|
|
swal({
|
|
title: LANG.sure,
|
|
icon: 'warning',
|
|
buttons: true,
|
|
dangerMode: true,
|
|
}).then(confirm => {
|
|
if (confirm) {
|
|
var url = $(this).attr('href');
|
|
$.ajax({
|
|
method: 'GET',
|
|
url: url,
|
|
dataType: 'json',
|
|
success: function(result) {
|
|
if (result.success == true) {
|
|
toastr.success(result.msg);
|
|
sell_table.ajax.reload();
|
|
} else {
|
|
toastr.error(result.msg);
|
|
}
|
|
},
|
|
});
|
|
}
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
|
|
@endsection |