@extends('advancedreports::layouts.app') @section('title', __('Supplier Stock Movement & Profit Report')) @section('content')

Supplier Stock Movement & Profit Report Track stock movements and profitability by supplier

@component('components.filters', [ 'title' => __('report.filters'), 'class' => 'box-primary' ])
{!! Form::label('supplier_id', __('purchase.supplier') . ':') !!} {!! Form::select('supplier_id', $suppliers, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'supplier_filter']); !!}
{!! Form::label('location_id', __('purchase.business_location') . ':') !!} {!! Form::select('location_id', $business_locations, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'id' => 'location_filter']); !!}
{!! Form::label('date_range', __('report.date_range') . ' (for transactions):') !!} {!! Form::text('date_range', null, ['placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'id' => 'date_range_filter', 'readonly']); !!}

@endcomponent
Total Suppliers
0
Current Stock Value
$0
Total Sales Value
$0
Total Purchases
$0
Total Profit
$0
Profit Margin
0%
@component('components.widget', ['class' => 'box-primary', 'title' => 'Supplier Stock Movement & Profit Report'])
@lang('messages.action') Supplier Today Stock Total Sale Total Purchase Balance Profit Value
Qty Purchase Value Sale Value Qty Purchase Value Sale Value Qty Purchase Value Sale Value Qty Purchase Value Value
@endcomponent
@stop @section('javascript') @endsection