mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
d545537a43
Signed-off-by: snipe <snipe@snipe.net>
208 lines
8.7 KiB
PHP
208 lines
8.7 KiB
PHP
@extends('layouts/default')
|
|
|
|
{{-- Page title --}}
|
|
@section('title')
|
|
{{ trans('general.bulkaudit') }}
|
|
@parent
|
|
@stop
|
|
|
|
{{-- Page content --}}
|
|
@section('content')
|
|
|
|
<style>
|
|
|
|
.input-group {
|
|
padding-left: 0px !important;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
<div class="row">
|
|
{{ Form::open(['method' => 'POST', 'class' => 'form-horizontal', 'role' => 'form', 'id' => 'audit-form' ]) }}
|
|
<!-- left column -->
|
|
<div class="col-md-6">
|
|
<div class="box box-default">
|
|
|
|
<div class="box-body">
|
|
{{csrf_field()}}
|
|
|
|
<!-- Next Audit -->
|
|
<div class="form-group {{ $errors->has('asset_tag') ? 'error' : '' }}">
|
|
{{ Form::label('asset_tag', trans('general.asset_tag'), array('class' => 'col-md-3 control-label', 'id' => 'audit_tag')) }}
|
|
<div class="col-md-9">
|
|
<div class="input-group date col-md-11 required" data-date-format="yyyy-mm-dd">
|
|
<input type="text" class="form-control" name="asset_tag" id="asset_tag" value="{{ old('asset_tag') }}">
|
|
|
|
</div>
|
|
{!! $errors->first('asset_tag', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<!-- Locations -->
|
|
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'location_id'])
|
|
|
|
|
|
<!-- Update location -->
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-3 col-md-9">
|
|
<label class="form-control">
|
|
<input type="checkbox" value="1" name="update_location" {{ old('update_location') == '1' ? ' checked="checked"' : '' }}>
|
|
<span>{{ trans('admin/hardware/form.asset_location') }}
|
|
<a href="#" class="text-dark-gray" tabindex="0" role="button" data-toggle="popover" data-trigger="focus" title="<i class='far fa-life-ring'></i> {{ trans('general.more_info') }}" data-html="true" data-content="{{ trans('general.quickscan_bulk_help') }}">
|
|
<x-icon type="more-info" /></a></span>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Next Audit -->
|
|
<div class="form-group {{ $errors->has('next_audit_date') ? 'error' : '' }}">
|
|
{{ Form::label('next_audit_date', trans('general.next_audit_date'), array('class' => 'col-md-3 control-label')) }}
|
|
<div class="col-md-9">
|
|
<div class="input-group date col-md-5" data-provide="datepicker" data-date-format="yyyy-mm-dd" data-date-clear-btn="true">
|
|
<input type="text" class="form-control" placeholder="{{ trans('general.next_audit_date') }}" name="next_audit_date" id="next_audit_date" value="{{ old('next_audit_date', $next_audit_date) }}">
|
|
<span class="input-group-addon"><x-icon type="calendar" /></span>
|
|
</div>
|
|
{!! $errors->first('next_audit_date', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<!-- Note -->
|
|
<div class="form-group {{ $errors->has('note') ? 'error' : '' }}">
|
|
{{ Form::label('note', trans('admin/hardware/form.notes'), array('class' => 'col-md-3 control-label')) }}
|
|
<div class="col-md-8">
|
|
<textarea class="col-md-6 form-control" id="note" name="note">{{ old('note') }}</textarea>
|
|
{!! $errors->first('note', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
|
</div>
|
|
</div>
|
|
|
|
</div> <!--/.box-body-->
|
|
<div class="box-footer">
|
|
<a class="btn btn-link" href="{{ route('hardware.index') }}"> {{ trans('button.cancel') }}</a>
|
|
<button type="submit" id="audit_button" class="btn btn-success pull-right">
|
|
<x-icon type="checkmark" />
|
|
{{ trans('general.audit') }}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
{{Form::close()}}
|
|
</div> <!--/.col-md-6-->
|
|
|
|
<div class="col-md-6">
|
|
<div class="box box-default" id="audited-div" style="display: none">
|
|
<div class="box-header with-border">
|
|
<h2 class="box-title"> {{ trans('general.bulkaudit_status') }} (<span id="audit-counter">0</span> {{ trans('general.assets_audited') }}) </h2>
|
|
</div>
|
|
<div class="box-body">
|
|
|
|
<table id="audited" class="table table-striped snipe-table">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ trans('general.asset_tag') }}</th>
|
|
<th>{{ trans('general.bulkaudit_status') }}</th>
|
|
<th></th>
|
|
</tr>
|
|
<tr id="audit-loader" style="display: none;">
|
|
<td colspan="3">
|
|
<x-icon type="spinner" />
|
|
{{ trans('admin/hardware/form.processing_spinner') }}
|
|
</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
@stop
|
|
|
|
|
|
@section('moar_scripts')
|
|
<script nonce="{{ csrf_token() }}">
|
|
|
|
$("#audit-form").submit(function (event) {
|
|
$('#audited-div').show();
|
|
$('#audit-loader').show();
|
|
|
|
event.preventDefault();
|
|
|
|
var form = $("#audit-form").get(0);
|
|
var formData = $('#audit-form').serializeArray();
|
|
|
|
$.ajax({
|
|
url: "{{ route('api.asset.audit') }}",
|
|
type : 'POST',
|
|
headers: {
|
|
"X-Requested-With": 'XMLHttpRequest',
|
|
"X-CSRF-TOKEN": $('meta[name="csrf-token"]').attr('content')
|
|
},
|
|
dataType : 'json',
|
|
data : formData,
|
|
success : function (data) {
|
|
if (data.status == 'success') {
|
|
$('#audited tbody').prepend("<tr class='success'><td>" + data.payload.asset_tag + "</td><td>" + data.messages + "</td><td><i class='fas fa-check text-success' style='font-size:18px;'></i></td></tr>");
|
|
|
|
@if ($user->enable_sounds)
|
|
var audio = new Audio('{{ config('app.url') }}/sounds/success.mp3');
|
|
audio.play()
|
|
@endif
|
|
|
|
incrementOnSuccess();
|
|
} else {
|
|
handleAuditFail(data);
|
|
}
|
|
$('input#asset_tag').val('');
|
|
},
|
|
error: function (data) {
|
|
handleAuditFail(data);
|
|
},
|
|
complete: function() {
|
|
$('#audit-loader').hide();
|
|
}
|
|
|
|
});
|
|
|
|
return false;
|
|
});
|
|
|
|
function handleAuditFail (data) {
|
|
@if ($user->enable_sounds)
|
|
var audio = new Audio('{{ config('app.url') }}/sounds/error.mp3');
|
|
audio.play()
|
|
@endif
|
|
if (data.asset_tag) {
|
|
var asset_tag = data.asset_tag;
|
|
} else {
|
|
var asset_tag = '';
|
|
}
|
|
if (data.messages) {
|
|
var messages = data.messages;
|
|
} else {
|
|
var messages = '';
|
|
}
|
|
$('#audited tbody').prepend("<tr class='danger'><td>" + data.payload.asset_tag + "</td><td>" + messages + "</td><td><i class='fas fa-times text-danger' style='font-size:18px;'></i></td></tr>");
|
|
}
|
|
|
|
function incrementOnSuccess() {
|
|
var x = parseInt($('#audit-counter').html());
|
|
y = x + 1;
|
|
$('#audit-counter').html(y);
|
|
}
|
|
|
|
$("#audit_tag").focus();
|
|
|
|
</script>
|
|
@stop
|