diff --git a/public/js/FileSaver.min.js b/public/js/FileSaver.min.js index b1cb31daef..9a1e397f20 100644 Binary files a/public/js/FileSaver.min.js and b/public/js/FileSaver.min.js differ diff --git a/public/js/bootstrap-table.js b/public/js/bootstrap-table.js index 1c891bbc54..9813921f5b 100755 Binary files a/public/js/bootstrap-table.js and b/public/js/bootstrap-table.js differ diff --git a/public/js/bootstrap-table.min.js b/public/js/bootstrap-table.min.js index 3fe39fc786..9723e1a67d 100755 Binary files a/public/js/bootstrap-table.min.js and b/public/js/bootstrap-table.min.js differ diff --git a/public/js/extensions/export/tableExport.js b/public/js/extensions/export/tableExport.js index b3d1a125f8..124621767c 100644 Binary files a/public/js/extensions/export/tableExport.js and b/public/js/extensions/export/tableExport.js differ diff --git a/public/js/extensions/export/tableExport.min.js b/public/js/extensions/export/tableExport.min.js new file mode 100644 index 0000000000..7844ddfac0 Binary files /dev/null and b/public/js/extensions/export/tableExport.min.js differ diff --git a/public/js/extensions/toolbar/bootstrap-table-toolbar.js b/public/js/extensions/toolbar/bootstrap-table-toolbar.js index fd4e585933..e54bf936ce 100755 Binary files a/public/js/extensions/toolbar/bootstrap-table-toolbar.js and b/public/js/extensions/toolbar/bootstrap-table-toolbar.js differ diff --git a/public/js/extensions/toolbar/bootstrap-table-toolbar.min.js b/public/js/extensions/toolbar/bootstrap-table-toolbar.min.js index f5a6490e9e..5626a8419d 100755 Binary files a/public/js/extensions/toolbar/bootstrap-table-toolbar.min.js and b/public/js/extensions/toolbar/bootstrap-table-toolbar.min.js differ diff --git a/public/js/jspdf.min.js b/public/js/jspdf.min.js index 4ba3b3c17e..e842d43616 100644 Binary files a/public/js/jspdf.min.js and b/public/js/jspdf.min.js differ diff --git a/public/js/jspdf.plugin.autotable.js b/public/js/jspdf.plugin.autotable.js index c71922e1ef..efbd41c8b7 100644 Binary files a/public/js/jspdf.plugin.autotable.js and b/public/js/jspdf.plugin.autotable.js differ diff --git a/public/js/xlsx.core.min.js b/public/js/xlsx.core.min.js new file mode 100644 index 0000000000..dbec1de42d Binary files /dev/null and b/public/js/xlsx.core.min.js differ diff --git a/resources/views/accessories/index.blade.php b/resources/views/accessories/index.blade.php index be1378156e..c8d6cee05a 100755 --- a/resources/views/accessories/index.blade.php +++ b/resources/views/accessories/index.blade.php @@ -40,9 +40,9 @@ @section('moar_scripts') @include ('partials.bootstrap-table', [ - 'exportFile' => 'accessories-export', 'search' => true, 'showFooter' => true, - 'columns' => \App\Presenters\AccessoryPresenter::dataTableLayout() + 'columns' => \App\Presenters\AccessoryPresenter::dataTableLayout(), + 'exportFile' => 'accessories-export', ]) @stop diff --git a/resources/views/licenses/view.blade.php b/resources/views/licenses/view.blade.php index 198729e47a..e08a63c074 100755 --- a/resources/views/licenses/view.blade.php +++ b/resources/views/licenses/view.blade.php @@ -42,15 +42,16 @@
+ data-cookie-id-table="licenseSeats-Table"> @@ -80,7 +81,7 @@ @if ($license->manufacturer) - + - + - + @endif - @if (!is_null($license->license_email)) + @if ($license->license_email!='') - + @endif diff --git a/resources/views/partials/bootstrap-table.blade.php b/resources/views/partials/bootstrap-table.blade.php index 8c5ece9be1..5fff0b538e 100644 --- a/resources/views/partials/bootstrap-table.blade.php +++ b/resources/views/partials/bootstrap-table.blade.php @@ -1,15 +1,16 @@ -{{-- This Will load our default bootstrap-table settings on any table with a class of "snipe-table" and export it to the passed 'exportFile' name --}} - + - -@if (!isset($simple_view)) - + + - + + + +@if (!isset($simple_view)) @endif @@ -17,6 +18,9 @@
{{ trans('admin/licenses/general.seat') }}
{{ trans('admin/hardware/form.manufacturer') }}{{ trans('admin/hardware/form.manufacturer') }}:

@can('view', \App\Models\Manufacturer::class) @@ -115,7 +116,7 @@ @if (!is_null($license->serial))

{{ trans('admin/licenses/form.license_key') }}{{ trans('admin/licenses/form.license_key') }}: @can('viewKeys', $license) {!! nl2br(e($license->serial)) !!} @@ -128,16 +129,16 @@ @endif - @if (!is_null($license->license_name)) + @if ($license->license_name!='')
{{ trans('admin/licenses/form.to_name') }}{{ trans('admin/licenses/form.to_name') }}: {{ $license->license_name }}
{{ trans('admin/licenses/form.to_email') }}{{ trans('admin/licenses/form.to_email') }}: {{ $license->license_email }}