diff --git a/resources/views/accounts/import_export.blade.php b/resources/views/accounts/import_export.blade.php index 4dc452c7d46a..c6f4d451e317 100644 --- a/resources/views/accounts/import_export.blade.php +++ b/resources/views/accounts/import_export.blade.php @@ -5,7 +5,8 @@ @@ -134,7 +135,9 @@ @foreach (\App\Services\ImportService::$sources as $source) if (val === '{{ $source }}') { @foreach (\App\Services\ImportService::$entityTypes as $entityType) - @if (class_exists(\App\Services\ImportService::getTransformerClassName($source, $entityType))) + @if ($source != IMPORT_WAVE && $entityType == ENTITY_PAYMENT) + // do nothing + @elseif (class_exists(\App\Services\ImportService::getTransformerClassName($source, $entityType))) $('.{{ $entityType }}-file').show(); @endif @endforeach