@extends('layouts.dash') @section('title','Transferts général') @section('title_card',"Transferts en comptabilité") @section('subtitle_card',"") @section('content')
@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if ($errors) @foreach ($errors->all() as $error)
{!! $error !!}
@endforeach @endif @if (Session::has('success'))
{!! \Session::get('success') !!}
@endif {{ html()->form('POST', url('/transfert_valide'))->open() }}
{!! html()->label('Type de pièces','type_pieces') !!} {!! html()->select('type_pieces')->options(array(""=>"Choisissez le type de pièce")+$liste_types) ->value($type) ->placeholder('Tous') ->attributes(['id'=>'sel_type_pieces','class' => 'form-control']) !!}
{!! html()->label('Comptes Aux.','sel_compte_aux') !!}  {!! html()->select('sel_compte_aux')->options(null,'Nom précisé') ->attributes(['id'=>'sel_compte_aux','class' => 'select2 form-control','style' => 'padding:2px']) !!}
 Période d'encaissement
 
{!! html()->text('date_debut', $date_debFR)->placeholder('Date')->attributes(['id'=>'date_debut','class' => 'form-control']) !!}
 AU 
{!! html()->text('date_fin', $date_finFR)->placeholder('Date')->attributes(['id'=>'date_fin','class' => 'form-control']) !!}
Seules les opération de l'exercice en cours sont affichées
{!! html()->label('Année ','sel_exercice' ) !!} {!! html()->select('sel_exercice',$annees,$annee)->placeholder('A définir')->attributes(['id' => 'sel_exercice','class' => 'form-control']) !!}
@if($type=="AC") @include("comptabilite.transferts.liste_appelscotisations") @endif @if($type=="RG") @include("comptabilite.transferts.liste_reglements") @endif @if($type=="MD") @include("comptabilite.transferts.liste_imputations") @endif @if($type=="FA") @include("comptabilite.transferts.liste_factures") @endif @if($type=="SA") @include("comptabilite.transferts.liste_salaires") @endif @if($type=="PM") @include("comptabilite.transferts.liste_paiements") @endif
{{ html()->form()->close() }}
@endsection @section('scripts') @endsection