mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
150 lines
5.2 KiB
PHP
150 lines
5.2 KiB
PHP
@extends('header')
|
|
|
|
@section('head')
|
|
@parent
|
|
|
|
<style type="text/css">
|
|
.contact-file,
|
|
.task-file,
|
|
.payment-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')
|
|
->addClass('warn-on-exit') !!}
|
|
|
|
{!! 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")
|
|
->addGroupClass("{$entityType}-file") !!}
|
|
@endforeach
|
|
|
|
{!! Former::actions( Button::info(trans('texts.upload'))->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('setEntityTypesVisible()')
|
|
->addOption('CSV', 'CSV')
|
|
->addOption('XLS', 'XLS')
|
|
->addOption('JSON', 'JSON')
|
|
->style('max-width: 200px') !!}
|
|
|
|
{!! Former::checkbox('entity_types')
|
|
->label('include')
|
|
->addGroupClass('entity-types')
|
|
->checkboxes([
|
|
trans('texts.clients') => array('name' => ENTITY_CLIENT, 'value' => 1),
|
|
trans('texts.tasks') => array('name' => ENTITY_TASK, 'value' => 1),
|
|
trans('texts.invoices') => array('name' => ENTITY_INVOICE, 'value' => 1),
|
|
trans('texts.payments') => array('name' => ENTITY_PAYMENT, 'value' => 1),
|
|
])->check(ENTITY_CLIENT)->check(ENTITY_TASK)->check(ENTITY_INVOICE)->check(ENTITY_PAYMENT) !!}
|
|
|
|
{!! Former::actions( Button::primary(trans('texts.download'))->submit()->large()->appendIcon(Icon::create('download-alt'))) !!}
|
|
</div>
|
|
</div>
|
|
{!! Former::close() !!}
|
|
|
|
|
|
{!! Former::open('settings/cancel_account')->addClass('cancel-account') !!}
|
|
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">{!! trans('texts.cancel_account') !!}</h3>
|
|
</div>
|
|
<div class="panel-body">
|
|
{!! Former::actions( Button::danger(trans('texts.cancel_account'))->large()->withAttributes(['onclick' => 'showConfirm()'])->appendIcon(Icon::create('trash'))) !!}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="confirmCancelModal" tabindex="-1" role="dialog" aria-labelledby="confirmCancelModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog" style="min-width:150px">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title" id="confirmCancelModalLabel">{!! trans('texts.cancel_account') !!}</h4>
|
|
</div>
|
|
|
|
<div style="background-color: #fff; padding-left: 16px; padding-right: 16px">
|
|
<p>{{ trans('texts.cancel_account_message') }}</p>
|
|
<p>{!! Former::textarea('reason')->placeholder(trans('texts.reason_for_canceling'))->raw() !!}</p>
|
|
</div>
|
|
|
|
<div class="modal-footer" style="margin-top: 0px">
|
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.go_back') }}</button>
|
|
<button type="button" class="btn btn-danger" onclick="confirmCancel()">{{ trans('texts.cancel_account') }}</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{!! Former::close() !!}
|
|
|
|
|
|
<script type="text/javascript">
|
|
|
|
function showConfirm() {
|
|
$('#confirmCancelModal').modal('show');
|
|
}
|
|
|
|
function confirmCancel() {
|
|
$('form.cancel-account').submit();
|
|
}
|
|
|
|
function setEntityTypesVisible() {
|
|
var selector = '.entity-types input[type=checkbox]';
|
|
if ($('#format').val() === 'JSON') {
|
|
$(selector).attr('disabled', true);
|
|
} else {
|
|
$(selector).removeAttr('disabled');
|
|
}
|
|
}
|
|
|
|
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 }}') {
|
|
@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
|
|
}
|
|
@endforeach
|
|
}
|
|
|
|
</script>
|
|
|
|
@stop |