@section('page_title')
OSAA - OWWMP BIA
@stop
@section('page_sub_title')
Follow Up Instructions
@stop
@section('scripts')
@parent
@stop
@section('jquery_init')
// Success bar
$('.success_bar').animate({ 'top' : 32, 'background-color' : 'rgba(176, 255, 190, 1.0)'}, 1600, 'easeOutQuad', function ()
{
$(this).delay(6000).fadeOut(4000);
$(this).hover(function ()
{
$(this).stop(true).css('opacity', '1.0');
},
function ()
{
$(this).fadeOut(4000);
})
});
// Close button
$('.close_button')
.button({'icons':{'primary':' ui-icon-circle-close'}})
.css({'font-size':'9pt'});
// Print button
$('.print_button')
.button()
.css({'float' : 'left',
'width' : '100px',
'height' : '50px',
'margin' : '0 50px 1em 0'});
// Help button
$('.help_button')
.button({'icons':{'primary':'ui-icon-help'}})
.css({'font-size':'9pt', 'margin-right':'10px'})
.click(function(event)
{
event.preventDefault();
$('
')
.appendTo('body')
.dialog(
{
draggable : true,
resizable : true,
height : 725,
minHeight : 400,
width : 615,
minWidth : 330,
modal : false,
title : 'Assessment Reconciliation Report Form Help',
open : function ()
{
var dialog_object = $(this);
dialog_object.html("");
var jqxhr = $.ajax(
{
type : 'GET',
url : '{{ url('forms/bia/help') }}',
dataType : 'html'
})
.done(function (returned_data)
{
dialog_object.html(returned_data);
})
.fail(function (jqXHR, status, error)
{
var response = jqXHR.responseText;
var errorData = $.parseJSON(response);
console.log(errorData);
alert ("There was an error looking up help information.\n\nThis page will be reloaded.");
location.reload();
})
.complete(function ()
{
});
},
close : function ()
{
var dialog_object = $(this);
$(dialog_object).remove();
}
});
});
@stop
@section('page_functions')
Help
Close
@stop
@section('main_content')
{{-- Success Bar --}}
@if (Session::has('success'))
{{ Session::get('success') }}
@endif
{{-- Errors --}}
@if (Session::has('errors'))
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif
Reconciliation Report #{{ $info['form']->id }} - {{ $info['form']->status }}
{{-- Form Timestamps --}}
Created
{{ date('n/j/y g:i a', strtotime($info['form']->created_at)) }}
Updated
{{ date('n/j/y g:i a', strtotime($info['form']->updated_at)) }}
@if (Helpers::strEqual($info['form']->status, array('PEND', 'INSF', 'RECD', 'DONE')))
Submitted
{{ date('n/j/y g:i a', strtotime($info['form']->submitted_at)) }}
@if (Helpers::strEqual($info['form']->status, array('RECD', 'DONE')))
Received
{{ date('n/j/y g:i a', strtotime($info['form']->received_at)) }}
@if (Helpers::strEqual($info['form']->status, array('DONE')))
Paid
{{ date('n/j/y g:i a', strtotime($info['form']->paid_at)) }}
@endif
@endif
@elseif (!is_null($info['form']->deleted_at))
Deleted
{{ date('n/j/y g:i a', strtotime($info['form']->deleted_at)) }}
@endif
{{-- Assessor Information --}}
Grand Total: ${{ number_format($info['form']->total_amount, 2) }}
{{ $info['assessor']->user->getDisplayFullName() }}, BIA Assessor
1. Print This Form
Print Form
Click the Print Form button to generate a PDF version of this form. You can then print the PDF form directly. You can also save a digital copy of your PDF form for your records. Your computer will need a program like Adobe Reader in order to view the generated PDF file. You will also be able to print this form at any time directly from your BIA dashboard.
2. Mail Materials
Group all BIA Data Forms by school. Place that school's Alpha Master on the top of that group. Finally, put the reconciliation report form on the very top of all of the paperwork. Mail this entire packet in one envelope to the OSAA office.
OSAA
C/O Brad Garrett
25200 SW Parkway Ave, Suite 1
Wilsonville, OR 97070
3. Receive Final Confirmation E-Mail
When your materials are received at the OSAA office, you will be sent a final confirmation e-mail indicating that your form was received and no further action will be required of you. If, however, your packet was missing information of your form was incomplete, your form will be rejected and marked as insufficient and an e-mail will be sent asking you to provide additional information.
@stop