|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/report/ |
Upload File : |
@extends('layouts.app')
@section('title', __('report.stock_report'))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>{{ __('report.stock_report')}}</h1>
</section>
<!-- Main content -->
<section class="content">
<div class="row">
<div class="col-md-12">
@component('components.filters', ['title' => __('report.filters')])
{!! Form::open(['url' => action([\App\Http\Controllers\ReportController::class, 'getStockReport']), 'method' => 'get', 'id' => 'stock_report_filter_form' ]) !!}
<div class="col-md-3">
<div class="form-group">
{!! Form::label('location_id', __('purchase.business_location') . ':') !!}
{!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%']); !!}
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('category_id', __('category.category') . ':') !!}
{!! Form::select('category', $categories, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'category_id']); !!}
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('sub_category_id', __('product.sub_category') . ':') !!}
{!! Form::select('sub_category', array(), null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'sub_category_id']); !!}
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('brand', __('product.brand') . ':') !!}
{!! Form::select('brand', $brands, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
</div>
</div>
<div class="col-md-3">
<div class="form-group">
{!! Form::label('unit',__('product.unit') . ':') !!}
{!! Form::select('unit', $units, null, ['placeholder' => __('messages.all'), 'class' => 'form-control select2', 'style' => 'width:100%']); !!}
</div>
</div>
@if($show_manufacturing_data)
<div class="col-md-3">
<div class="form-group">
<br>
<div class="checkbox">
<label>
{!! Form::checkbox('only_mfg', 1, false,
[ 'class' => 'input-icheck', 'id' => 'only_mfg_products']); !!} {{ __('manufacturing::lang.only_mfg_products') }}
</label>
</div>
</div>
</div>
@endif
{!! Form::close() !!}
@endcomponent
</div>
</div>
@can('view_product_stock_value')
<div class="row">
<div class="col-md-12">
@component('components.widget', ['class' => 'box-solid'])
<table class="table no-border">
<tr>
<td>@lang('report.closing_stock') (@lang('lang_v1.by_purchase_price'))</td>
<td>@lang('report.closing_stock') (@lang('lang_v1.by_sale_price'))</td>
<td>@lang('lang_v1.potential_profit')</td>
<td>@lang('lang_v1.profit_margin')</td>
</tr>
<tr>
<td><h3 id="closing_stock_by_pp" class="mb-0 mt-0"></h3></td>
<td><h3 id="closing_stock_by_sp" class="mb-0 mt-0"></h3></td>
<td><h3 id="potential_profit" class="mb-0 mt-0"></h3></td>
<td><h3 id="profit_margin" class="mb-0 mt-0"></h3></td>
</tr>
</table>
@endcomponent
</div>
</div>
@endcan
<div class="row">
<div class="col-md-12">
@component('components.widget', ['class' => 'box-solid'])
@include('report.partials.stock_report_table')
@endcomponent
</div>
</div>
</section>
<!-- /.content -->
@endsection
@section('javascript')
<script src="{{ asset('js/report.js?v=' . $asset_v) }}"></script>
@endsection