100 lines
5.0 KiB
PHP
100 lines
5.0 KiB
PHP
@extends('layouts.app')
|
|
@section('title', __('report.customer') . ' - ' . __('report.supplier') . ' ' . __('report.reports'))
|
|
|
|
@section('content')
|
|
|
|
<!-- Content Header (Page header) -->
|
|
<section class="content-header">
|
|
<h1>{{ __('report.customer')}} & {{ __('report.supplier')}} {{ __('report.reports')}}</h1>
|
|
<!-- <ol class="breadcrumb">
|
|
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
|
|
<li class="active">Here</li>
|
|
</ol> -->
|
|
</section>
|
|
|
|
<!-- Main content -->
|
|
<section class="content">
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
@component('components.filters', ['title' => __('report.filters')])
|
|
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('cg_customer_group_id', __( 'lang_v1.customer_group_name' ) . ':') !!}
|
|
{!! Form::select('cnt_customer_group_id', $customer_group, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'cnt_customer_group_id']); !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('type', __( 'lang_v1.type' ) . ':') !!}
|
|
{!! Form::select('contact_type', $types, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'contact_type']); !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('cs_report_location_id', __( 'sale.location' ) . ':') !!}
|
|
{!! Form::select('cs_report_location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'cs_report_location_id']); !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('scr_contact_id', __( 'report.contact' ) . ':') !!}
|
|
{!! Form::select('scr_contact_id', $contact_dropdown, null , ['class' => 'form-control select2', 'id' => 'scr_contact_id', 'placeholder' => __('lang_v1.all'), 'style' => 'width:100%']); !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
<div class="form-group">
|
|
{!! Form::label('scr_date_filter', __('report.date_range') . ':') !!}
|
|
{!! Form::text('date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'scr_date_filter', 'readonly']); !!}
|
|
</div>
|
|
</div>
|
|
|
|
@endcomponent
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
@component('components.widget', ['class' => 'box-primary'])
|
|
<div class="table-responsive">
|
|
<table class="table table-bordered table-striped" id="supplier_report_tbl">
|
|
<thead>
|
|
<tr>
|
|
<th>@lang('report.contact')</th>
|
|
<th>@lang('report.total_purchase')</th>
|
|
<th>@lang('lang_v1.total_purchase_return')</th>
|
|
<th>@lang('report.total_sell')</th>
|
|
<th>@lang('lang_v1.total_sell_return')</th>
|
|
<th>@lang('lang_v1.opening_balance_due')</th>
|
|
<th>@lang('report.total_due') <i class="fa fa-info-circle text-info no-print" data-toggle="tooltip" data-placement="bottom" data-html="true" data-original-title="{{ __('messages.due_tooltip')}}" aria-hidden="true"></i></th>
|
|
</tr>
|
|
</thead>
|
|
<tfoot>
|
|
<tr class="bg-gray font-17 footer-total text-center">
|
|
<td><strong>@lang('sale.total'):</strong></td>
|
|
<td><span class="display_currency" id="footer_total_purchase" data-currency_symbol ="true"></span></td>
|
|
<td><span class="display_currency" id="footer_total_purchase_return" data-currency_symbol ="true"></span></td>
|
|
<td><span class="display_currency" id="footer_total_sell" data-currency_symbol ="true"></span></td>
|
|
<td><span class="display_currency" id="footer_total_sell_return" data-currency_symbol ="true"></span></td>
|
|
<td><span class="display_currency" id="footer_total_opening_bal_due" data-currency_symbol ="true"></span></td>
|
|
<td><span class="display_currency" id="footer_total_due" data-currency_symbol ="true"></span></td>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
@endcomponent
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<!-- /.content -->
|
|
|
|
@endsection
|
|
|
|
@section('javascript')
|
|
<script src="{{ asset('js/report.js?v=' . $asset_v) }}"></script>
|
|
@endsection |