1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/resources/views/accounts/import_export.blade.php
2017-05-22 10:46:37 +03:00

179 lines
6.2 KiB
PHP

@extends('header')
@section('head')
@parent
<style type="text/css">
.import-file {
display: none;
}
</style>
@stop
@section('content')
@parent
@include('accounts.nav', ['selected' => ACCOUNT_IMPORT_EXPORT])
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{!! trans('texts.import_data') !!}</h3>
</div>
<div class="panel-body">
{!! Former::open_for_files('/import')
->onsubmit('return onFormSubmit(event)')
->addClass('warn-on-exit') !!}
{!! Former::select('source')
->onchange('setFileTypesVisible()')
->options(array_combine(\App\Services\ImportService::$sources, \App\Services\ImportService::$sources))
->style('width: 200px') !!}
<br/>
@foreach (\App\Services\ImportService::$entityTypes as $entityType)
{!! Former::file($entityType)
->addGroupClass("import-file {$entityType}-file") !!}
@endforeach
<div id="jsonIncludes" style="display:none">
{!! Former::checkboxes('json_include_radio')
->label(trans('texts.include'))
->checkboxes([
trans('texts.data') => 'data',
trans('texts.settings') => 'settings',
]) !!}
</div>
<div id="inovicePlaneImport" style="display:none"><center>
{!! trans('texts.inoviceplane_import', ['link' => link_to(INVOICEPLANE_IMPORT, 'turbo124/Plane2Ninja', ['target' => '_blank'])]) !!}
</center></div>
<br/>
{!! Former::actions( Button::info(trans('texts.upload'))->withAttributes(['id' => 'uploadButton'])->submit()->large()->appendIcon(Icon::create('open'))) !!}
{!! Former::close() !!}
</div>
</div>
{!! Former::open('/export') !!}
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">{!! trans('texts.export_data') !!}</h3>
</div>
<div class="panel-body">
{!! Former::select('format')
->onchange('setCheckboxesEnabled()')
->addOption('CSV', 'CSV')
->addOption('XLS', 'XLS')
->addOption('JSON', 'JSON')
->style('max-width: 200px')
->help('<br/>' . trans('texts.export_help')) !!}
<div id="csvIncludes">
{!! Former::inline_radios('include_radio')
->onchange('setCheckboxesEnabled()')
->label(trans('texts.include'))
->radios([
trans('texts.all') . ' &nbsp; ' => ['value' => 'all', 'name' => 'include'],
trans('texts.selected') => ['value' => 'selected', 'name' => 'include'],
])->check('all') !!}
<div class="form-group entity-types">
<label class="control-label col-lg-4 col-sm-4"></label>
<div class="col-lg-2 col-sm-2">
@include('partials/checkbox', ['field' => 'clients'])
@include('partials/checkbox', ['field' => 'contacts'])
@include('partials/checkbox', ['field' => 'credits'])
@include('partials/checkbox', ['field' => 'tasks'])
</div>
<div class="col-lg-2 col-sm-2">
@include('partials/checkbox', ['field' => 'invoices'])
@include('partials/checkbox', ['field' => 'quotes'])
@include('partials/checkbox', ['field' => 'recurring'])
@include('partials/checkbox', ['field' => 'payments'])
</div>
<div class="col-lg-3 col-sm-3">
@include('partials/checkbox', ['field' => 'products'])
@include('partials/checkbox', ['field' => 'expenses'])
@include('partials/checkbox', ['field' => 'vendors'])
@include('partials/checkbox', ['field' => 'vendor_contacts'])
</div>
</div>
</div><br/>
{!! Former::actions( Button::primary(trans('texts.download'))->submit()->large()->appendIcon(Icon::create('download-alt'))) !!}
</div>
</div>
{!! Former::close() !!}
<script type="text/javascript">
$(function() {
setFileTypesVisible();
setCheckboxesEnabled();
});
function onFormSubmit() {
$('#uploadButton').attr('disabled', true);
return true;
}
function setCheckboxesEnabled() {
var $checkboxes = $('.entity-types input[type=checkbox]');
var include = $('input[name=include]:checked').val()
var format = $('#format').val();
if (include === 'all') {
$checkboxes.attr('disabled', true);
} else {
$checkboxes.removeAttr('disabled');
}
if (format === 'JSON') {
$('#csvIncludes').hide();
} else {
$('#csvIncludes').show();
}
}
function setFileTypesVisible() {
var val = $('#source').val();
if (val === 'JSON') {
$('#jsonIncludes').show();
} else {
$('#jsonIncludes').hide();
}
@foreach (\App\Services\ImportService::$entityTypes as $entityType)
$('.{{ $entityType }}-file').hide();
@endforeach
@foreach (\App\Services\ImportService::$sources as $source)
if (val === '{{ $source }}') {
@foreach (\App\Services\ImportService::$entityTypes as $entityType)
@if ($source != IMPORT_WAVE && $entityType == ENTITY_PAYMENT)
// do nothing
@elseif (class_exists(\App\Services\ImportService::getTransformerClassName($source, $entityType)))
$('.{{ $entityType }}-file').show();
@endif
@endforeach
}
@if ($source === IMPORT_JSON)
if (val === '{{ $source }}') {
$('.JSON-file').show();
}
@endif
if (val === '{{ IMPORT_INVOICEPLANE }}') {
$('#uploadButton').hide();
$('#inovicePlaneImport').show();
} else {
$('#uploadButton').show();
$('#inovicePlaneImport').hide();
}
@endforeach
}
</script>
@stop