2015-10-14 16:15:39 +02:00
|
|
|
@extends('header')
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-11-18 15:40:50 +01:00
|
|
|
@section('head')
|
|
|
|
@parent
|
|
|
|
|
|
|
|
<style type="text/css">
|
2016-05-31 22:15:55 +02:00
|
|
|
.import-file {
|
2015-11-18 15:40:50 +01:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
@stop
|
|
|
|
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
@section('content')
|
|
|
|
@parent
|
|
|
|
|
2015-10-14 16:15:39 +02:00
|
|
|
@include('accounts.nav', ['selected' => ACCOUNT_IMPORT_EXPORT])
|
|
|
|
|
2015-04-20 16:34:23 +02:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2015-11-18 15:40:50 +01:00
|
|
|
<h3 class="panel-title">{!! trans('texts.import_data') !!}</h3>
|
2015-04-20 16:34:23 +02:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2015-03-16 22:45:25 +01:00
|
|
|
|
2015-12-07 22:41:48 +01:00
|
|
|
{!! Former::open_for_files('/import')
|
|
|
|
->addClass('warn-on-exit') !!}
|
|
|
|
|
2015-11-18 15:40:50 +01:00
|
|
|
{!! Former::select('source')
|
|
|
|
->onchange('setFileTypesVisible()')
|
|
|
|
->options(array_combine(\App\Services\ImportService::$sources, \App\Services\ImportService::$sources))
|
|
|
|
->style('width: 200px') !!}
|
|
|
|
|
|
|
|
@foreach (\App\Services\ImportService::$entityTypes as $entityType)
|
|
|
|
{!! Former::file("{$entityType}_file")
|
2016-11-28 09:55:00 +01:00
|
|
|
->addGroupClass("import-file {$entityType}-file") !!}
|
2015-11-18 15:40:50 +01:00
|
|
|
@endforeach
|
|
|
|
|
|
|
|
{!! Former::actions( Button::info(trans('texts.upload'))->submit()->large()->appendIcon(Icon::create('open'))) !!}
|
|
|
|
{!! Former::close() !!}
|
|
|
|
|
|
|
|
</div>
|
2015-11-17 14:53:14 +01:00
|
|
|
</div>
|
|
|
|
|
2015-04-20 16:34:23 +02:00
|
|
|
|
2015-11-12 21:36:28 +01:00
|
|
|
{!! Former::open('/export') !!}
|
2015-04-20 16:34:23 +02:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
2015-11-12 21:36:28 +01:00
|
|
|
<h3 class="panel-title">{!! trans('texts.export_data') !!}</h3>
|
2015-04-20 16:34:23 +02:00
|
|
|
</div>
|
|
|
|
<div class="panel-body">
|
2015-11-12 21:36:28 +01:00
|
|
|
{!! Former::select('format')
|
2016-09-13 15:12:27 +02:00
|
|
|
->onchange('setCheckboxesEnabled()')
|
2015-11-12 21:36:28 +01:00
|
|
|
->addOption('CSV', 'CSV')
|
|
|
|
->addOption('XLS', 'XLS')
|
|
|
|
->addOption('JSON', 'JSON')
|
2016-06-02 21:03:59 +02:00
|
|
|
->style('max-width: 200px')
|
2016-11-27 14:46:45 +01:00
|
|
|
->help('<br/>' . trans('texts.export_help')) !!}
|
2015-11-12 21:36:28 +01:00
|
|
|
|
2016-07-05 15:09:52 +02:00
|
|
|
|
|
|
|
{!! Former::inline_radios('include_radio')
|
2016-09-13 15:12:27 +02:00
|
|
|
->onchange('setCheckboxesEnabled()')
|
2016-07-05 15:09:52 +02:00
|
|
|
->label(trans('texts.include'))
|
|
|
|
->radios([
|
2016-07-05 16:27:30 +02:00
|
|
|
trans('texts.all') . ' ' => ['value' => 'all', 'name' => 'include'],
|
2016-07-05 15:09:52 +02:00
|
|
|
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>
|
2016-12-05 19:35:01 +01:00
|
|
|
<div class="col-lg-2 col-sm-2">
|
2016-07-05 15:09:52 +02:00
|
|
|
@include('partials/checkbox', ['field' => 'clients'])
|
|
|
|
@include('partials/checkbox', ['field' => 'contacts'])
|
|
|
|
@include('partials/checkbox', ['field' => 'credits'])
|
|
|
|
@include('partials/checkbox', ['field' => 'tasks'])
|
|
|
|
</div>
|
2016-12-05 19:35:01 +01:00
|
|
|
<div class="col-lg-2 col-sm-2">
|
|
|
|
@include('partials/checkbox', ['field' => 'invoices'])
|
2016-07-05 15:09:52 +02:00
|
|
|
@include('partials/checkbox', ['field' => 'quotes'])
|
|
|
|
@include('partials/checkbox', ['field' => 'recurring'])
|
|
|
|
@include('partials/checkbox', ['field' => 'payments'])
|
2016-12-05 19:35:01 +01:00
|
|
|
</div>
|
|
|
|
<div class="col-lg-3 col-sm-3">
|
2016-12-15 14:28:24 +01:00
|
|
|
@include('partials/checkbox', ['field' => 'products'])
|
2016-12-05 19:35:01 +01:00
|
|
|
@include('partials/checkbox', ['field' => 'expenses'])
|
2016-07-05 15:09:52 +02:00
|
|
|
@include('partials/checkbox', ['field' => 'vendors'])
|
|
|
|
@include('partials/checkbox', ['field' => 'vendor_contacts'])
|
|
|
|
</div>
|
2016-12-05 19:56:57 +01:00
|
|
|
</div><br/>
|
2015-11-12 21:36:28 +01:00
|
|
|
|
2016-05-31 22:15:55 +02:00
|
|
|
{!! Former::actions( Button::primary(trans('texts.download'))->submit()->large()->appendIcon(Icon::create('download-alt'))) !!}
|
2015-04-20 16:34:23 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2015-04-01 21:57:02 +02:00
|
|
|
{!! Former::close() !!}
|
2015-03-16 22:45:25 +01:00
|
|
|
|
|
|
|
|
|
|
|
<script type="text/javascript">
|
2016-05-31 22:15:55 +02:00
|
|
|
$(function() {
|
2016-09-25 20:13:14 +02:00
|
|
|
setFileTypesVisible();
|
2016-09-13 15:12:27 +02:00
|
|
|
setCheckboxesEnabled();
|
2016-05-31 22:15:55 +02:00
|
|
|
});
|
|
|
|
|
2016-09-13 15:12:27 +02:00
|
|
|
function setCheckboxesEnabled() {
|
|
|
|
var $checkboxes = $('input[type=checkbox]');
|
|
|
|
var include = $('input[name=include]:checked').val()
|
|
|
|
var format = $('#format').val();
|
|
|
|
if (include === 'all' || format === 'JSON') {
|
|
|
|
$checkboxes.attr('disabled', true);
|
|
|
|
} else {
|
|
|
|
$checkboxes.removeAttr('disabled');
|
|
|
|
}
|
2015-11-12 21:36:28 +01:00
|
|
|
}
|
|
|
|
|
2015-11-18 15:40:50 +01:00
|
|
|
function setFileTypesVisible() {
|
|
|
|
var val = $('#source').val();
|
|
|
|
@foreach (\App\Services\ImportService::$entityTypes as $entityType)
|
|
|
|
$('.{{ $entityType }}-file').hide();
|
|
|
|
@endforeach
|
|
|
|
@foreach (\App\Services\ImportService::$sources as $source)
|
|
|
|
if (val === '{{ $source }}') {
|
2015-11-24 20:45:38 +01:00
|
|
|
@foreach (\App\Services\ImportService::$entityTypes as $entityType)
|
2015-12-31 15:33:29 +01:00
|
|
|
@if ($source != IMPORT_WAVE && $entityType == ENTITY_PAYMENT)
|
|
|
|
// do nothing
|
|
|
|
@elseif (class_exists(\App\Services\ImportService::getTransformerClassName($source, $entityType)))
|
2015-11-24 20:45:38 +01:00
|
|
|
$('.{{ $entityType }}-file').show();
|
|
|
|
@endif
|
|
|
|
@endforeach
|
2015-11-18 15:40:50 +01:00
|
|
|
}
|
2016-06-02 21:03:59 +02:00
|
|
|
@if ($source === IMPORT_JSON)
|
|
|
|
if (val === '{{ $source }}') {
|
|
|
|
$('.JSON-file').show();
|
|
|
|
}
|
|
|
|
@endif
|
2015-11-18 15:40:50 +01:00
|
|
|
@endforeach
|
|
|
|
}
|
|
|
|
|
2015-03-16 22:45:25 +01:00
|
|
|
</script>
|
|
|
|
|
2016-05-31 22:15:55 +02:00
|
|
|
@stop
|