@extends('app') @section('content') @include('flash::message') @include('partials.alert')

{!! ucwords(trans('hilbit.report.transaction_summary.form_title')) !!}

{!! Form::open(['url' => 'reports/transaction_summary/output', 'id' => 'fm_transaction_summary_report']) !!} {!! Form::hidden('export', 0, ['id' => 'export']) !!} @include('errors.list')
{!! Form::label('start_date', 'Start date:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::formattedDate('start_date', ['class' => 'form-control','type'=> 'text']) !!}
{!! Form::label('end_date', 'End date:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::formattedDate('end_date', ['class' => 'form-control','type'=> 'text']) !!}

{!! Form::label('start_agreement_code', 'Start agreement:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::select('start_agreement_code', $agreement_list, null, ['class' => 'form-control']) !!}
{!! Form::label('end_agreement_code', 'End agreement:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::select('end_agreement_code', $agreement_list, null, ['class' => 'form-control']) !!}

{!! Form::label('client_type_id', 'Client type:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::checkbox('all_client_types', 1, true, ['id' => 'cb_all_client_types']) !!} All
{!! Form::select('client_type_id', $client_type_list, null, ['class' => 'form-control', 'id' => 'client_type_id']) !!}
{!! Form::label('client_id', 'Client :', ['class' => 'control-label col-sm-2']) !!}
{!! Form::checkbox('all_client', 1, true, ['id' => 'cb_all_client']) !!} All
{!! Form::select('client_id[]', $client_list, null, ['class' => 'form-control', 'multiple', 'id' => 'client_id']) !!}
{!! Form::label('agreement_type_id', 'Agreement type:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::checkbox('all_agreement_types', 1, true, ['id' => 'cb_all_agreement_types','data-toggle' => 'tooltip', 'title' => ucfirst(trans('hilbit.report.excluded_agreement_types_hint'))]) !!} All
{!! Form::select('agreement_type_id', $agreement_type_list, null, ['class' => 'form-control', 'id' => 'agreement_type_id']) !!}
{!! Form::label('agreement_status_id', 'Agreement status:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::checkbox('all_agreement_status',1, true, ['id' => 'cb_all_agreement_status']) !!} All
{!! Form::select('agreement_status_id[]', $agreement_status_list, null, ['class' => 'form-control', 'multiple', 'id' => 'agreement_status_id']) !!}
{!! Form::label('transaction_type_id', 'Transaction Type:', ['class' => 'control-label col-sm-2']) !!}
{!! Form::checkbox('all_transaction_types',1, true, ['id' => 'cb_all_transaction_types']) !!} All
{!! Form::select('transaction_type_id[]', $transaction_type_list, null, ['class' => 'form-control', 'multiple', 'id' => 'transaction_type_id']) !!}
{!! Form::label('include_history', 'Include history?', ['class' => 'control-label col-sm-2']) !!}
{!! Form::checkbox('include_history',1, true, ['id' => 'cb_include_history']) !!}
@include('reports.buttons', ['preview_only' => false])
{!! Form::close() !!}
@stop @section('scripts') @stop