@extends('accounts.nav') @section('head') @parent @stop @section('content') @parent @include('accounts.nav_advanced') {!! Button::primary(trans('texts.data_visualizations')) ->asLinkTo('/company/advanced_settings/data_visualizations') ->withAttributes(['class' => 'pull-right']) ->appendIcon(Icon::create('globe')) !!}

 

 

{!! trans('texts.settings') !!}

{!! Former::open()->addClass('warn-on-exit') !!}
{!! Former::text('action') !!}
{!! Former::populateField('start_date', $startDate) !!} {!! Former::populateField('end_date', $endDate) !!} {!! Former::populateField('enable_report', intval($enableReport)) !!} {!! Former::populateField('enable_chart', intval($enableChart)) !!} {!! Former::text('start_date')->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT)) ->append('') !!} {!! Former::text('end_date')->data_date_format(Session::get(SESSION_DATE_PICKER_FORMAT)) ->append('') !!}

 

{!! Former::checkbox('enable_report')->text(trans('texts.enable')) !!} {!! Former::select('report_type')->options($reportTypes, $reportType)->label(trans('texts.group_by')) !!}

 

{!! Former::checkbox('enable_chart')->text(trans('texts.enable')) !!} {!! Former::select('group_by')->options($dateTypes, $groupBy) !!} {!! Former::select('chart_type')->options($chartTypes, $chartType) !!}

 

@if (Auth::user()->isPro()) {!! Former::actions( Button::primary(trans('texts.export'))->withAttributes(array('onclick' => 'onExportClick()'))->appendIcon(Icon::create('export')), Button::success(trans('texts.run'))->withAttributes(array('id' => 'submitButton'))->submit()->appendIcon(Icon::create('play')) ) !!} @else @endif {!! Former::close() !!}
@if ($enableReport)
@foreach ($columns as $column) @endforeach @foreach ($displayData as $record) @foreach ($record as $field) @endforeach @endforeach @if (!$reportType) @endif
{{ trans("texts.{$column}") }}
{!! $field !!}
{{ trans('texts.totals') }} @foreach ($reportTotals['amount'] as $currencyId => $total) {{ Utils::formatMoney($total, $currencyId) }}
@endforeach
@foreach ($reportTotals['paid'] as $currencyId => $total) {{ Utils::formatMoney($total, $currencyId) }}
@endforeach
@foreach ($reportTotals['balance'] as $currencyId => $total) {{ Utils::formatMoney($total, $currencyId) }}
@endforeach
@endif @if ($enableChart)

 

 Invoices
 Payments
 Credits
@endif
@stop @section('onReady') $('#start_date, #end_date').datepicker({ autoclose: true, todayHighlight: true, keyboardNavigation: false }); @stop