@extends('layout.sidebar') @section('content') @section('title','Selección de banco') {{ Form::hidden('months', action('SchoolYearController@getInvoiceMonth', array()), array('id'=>'months')) }} {{ Form::hidden('sections', action('SectionController@getSectionsbyschoolyearoptionsall', array()), array('id'=>'sections')) }} {{ Form::hidden('courses', action('LevelController@getActiveLevelsAddAll', array()), array('id'=>'courses')) }} {{ Form::hidden('students', action('CreditNoteController@getStudents', array()), array('id'=>'students')) }} {{ Form::hidden('save', action('CreditNoteController@postSave', array()), array('id'=>'save')) }} {{ Form::hidden('recocer', action('CreditNoteController@postReturn', array()), array('id'=>'recocer')) }} {{ Form::hidden('saverecover', action('CreditNoteController@postSaveRecover', array()), array('id'=>'saverecover')) }} {{ Form::hidden('receipt', action('CreditNoteController@postReceipt', array()), array('id'=>'receipt')) }} {{ Form::hidden('gettotal', action('CreditNoteController@postTotalPaid', array()), array('id'=>'gettotal')) }} {{ Form::hidden('payementDetail', action('CreditNoteController@postPaymentDetail', array()), array('id'=>'payementDetail')) }} {{ Form::open(array('url' => action('StudentYearBanckController@postSave'), 'class' => 'form-signin', 'method' => 'POST','id'=>'data')) }}

{{"SELECCIÓN DE BANCO"}}

{{"AÑO LECTIVO"}} {{$currentSchoolYear->name_scy}}


@if(count($students)>=1)
@foreach($students as $student) @endforeach
CODIGO ESTUDIANTE BANCO
{{$student->serial_std}} {{$student->last_name_std}} {{$student->first_name_std}} @if(empty($student->bank_sty)) {{ Form::select('student['.$student->serial_std.']', $banks,$student->bank_sty,array('class'=>'form-control credit_note','required','id'=>'serial_std'.$student->serial_cdt)) }} @else {{$student->bank_sty}} @endif
@if($showButton=='YES')
POR FAVOR SELECCIONE EL BANCO EN EL QUE VA A REALIZAR EL PAGO DE LAS CARTAS DE PAGO DE LA 2 HASTA LA 10; UNA VEZ GUARDADA LA INFORMACIÓN YA NO PODRÁ CAMBIARLA.

@else
LOS ESTUDIANTES QUE SE MUESTRAN EN PANTALLA YA HAN SELECCIONADO EL BANCO DONDE REALIZARÁN LOS PAGOS, EN CASO DE QUERER CAMBIAR ESTE DATO POR FAVOR COMUNÍQUESE CON EL COLEGIO.
@endif @else
No se han encontrado estudiantes
@endif {{Form::close()}} {{ HTML::style('css/common/feature-table.css') }} {{ HTML::script('js/common/feature-table.js') }} @stop