2017-08-29 16:00:22 -07:00
@ extends ( 'layouts/default' )
{{ -- Page title -- }}
@ section ( 'title' )
{{ trans ( 'general.bulkaudit' ) }}
@ parent
@ stop
{{ -- Page content -- }}
@ section ( 'content' )
< style >
. input - group {
padding - left : 0 px ! important ;
}
</ style >
2021-04-05 21:53:19 -07:00
< 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 > 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 " >
< i class = " fa fa-spinner spin " aria - hidden = " true " ></ i > Processing ...
</ td >
</ tr >
</ thead >
< tbody >
</ tbody >
</ table >
</ div ><
</ div >
</ div >
< div >
2017-08-29 16:00:22 -07:00
< 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-header with-border " >
2020-03-31 23:36:56 -07:00
< h2 class = " box-title " > {{ trans ( 'general.bulkaudit' ) }} </ h2 >
2017-08-29 16:00:22 -07:00
</ div >
< 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-5 " data - date - format = " yyyy-mm-dd " >
2019-12-10 19:32:50 -08:00
< input type = " text " class = " form-control " name = " asset_tag " id = " asset_tag " value = " { { Request::old('asset_tag') }} " >
2017-08-29 16:00:22 -07:00
</ div >
2020-04-01 03:21:15 -07:00
{ !! $errors -> first ( 'asset_tag' , '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>' ) !! }
2017-08-29 16:00:22 -07:00
</ div >
</ div >
<!-- Locations -->
2017-10-28 11:17:52 -07:00
@ include ( 'partials.forms.edit.location-select' , [ 'translated_name' => trans ( 'general.location' ), 'fieldname' => 'location_id' ])
2017-08-29 16:00:22 -07:00
2018-09-07 05:39:41 -07:00
<!-- Update location -->
< div class = " form-group " >
< div class = " col-sm-offset-3 col-md-9 " >
< label >
2019-12-10 19:32:50 -08:00
< input type = " checkbox " value = " 1 " name = " update_location " class = " minimal " {{ Request :: old ( 'update_location' ) == '1' ? ' checked="checked"' : '' }} > Update asset location
2018-09-07 18:08:18 -07:00
</ label > < a href = " # " class = " text-dark-gray " tabindex = " 0 " role = " button " data - toggle = " popover " data - trigger = " focus " title = " <i class='fa fa-life-ring'></i> More Info " data - html = " true " data - content = " Checking this box will edit the asset record to reflect this new location. Leaving it unchecked will simply note the location in the audit log.<br><br>Note that is this asset is checked out, it will not change the location of the person, asset or location it is checked out to. " >< i class = " fa fa-life-ring " ></ i ></ a >
2018-09-07 05:39:41 -07:00
</ div >
</ div >
2017-08-29 16:00:22 -07:00
<!-- 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 " >
2020-04-21 03:58:31 -07:00
< 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 ) }} " >
2020-04-02 18:17:21 -07:00
< span class = " input-group-addon " >< i class = " fa fa-calendar " aria - hidden = " true " ></ i ></ span >
2017-08-29 16:00:22 -07:00
</ div >
2020-04-01 03:21:15 -07:00
{ !! $errors -> first ( 'next_audit_date' , '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>' ) !! }
2017-08-29 16:00:22 -07:00
</ 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 " >
2020-04-21 03:58:31 -07:00
< textarea class = " col-md-6 form-control " id = " note " name = " note " > {{ old ( 'note' ) }} </ textarea >
2020-04-01 03:21:15 -07:00
{ !! $errors -> first ( 'note' , '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>' ) !! }
2017-08-29 16:00:22 -07:00
</ div >
</ div >
</ div > <!--/. box - body -->
< div class = " box-footer " >
< a class = " btn btn-link " href = " { { route('hardware.index') }} " > {{ trans ( 'button.cancel' ) }} </ a >
2020-04-01 03:25:07 -07:00
< button type = " submit " id = " audit_button " class = " btn btn-success pull-right " >< i class = " fa fa-check icon-white " aria - hidden = " true " ></ i > {{ trans ( 'general.audit' ) }} </ button >
2017-08-29 16:00:22 -07:00
</ div >
</ div >
{{ Form :: close ()}}
</ div > <!--/. col - md - 7 -->
< div class = " col-md-6 " >
< div class = " box box-default " id = " audited-div " style = " display: none " >
< div class = " box-header with-border " >
2020-03-31 23:36:56 -07:00
< h2 class = " box-title " > {{ trans ( 'general.bulkaudit_status' ) }} ( < span id = " audit-counter " > 0 </ span > assets audited ) </ h2 >
2017-08-29 16:00:22 -07:00
</ div >
< div class = " box-body " >
< table id = " audited " class = " table table-striped snipe-table " >
< thead >
2018-10-31 11:13:08 -07:00
< tr >
< th > {{ trans ( 'general.asset_tag' ) }} </ th >
< th > {{ trans ( 'general.bulkaudit_status' ) }} </ th >
< th ></ th >
</ tr >
2017-08-29 16:00:22 -07:00
< tr id = " audit-loader " style = " display: none; " >
< td colspan = " 3 " >
< i class = " fa fa-spinner spin " aria - hidden = " true " ></ i > Processing ...
</ td >
</ tr >
2018-10-31 11:13:08 -07:00
</ thead >
< tbody >
2017-08-29 16:00:22 -07:00
</ tbody >
</ table >
</ div >
</ div >
</ div >
</ div >
</ div >
@ stop
@ section ( 'moar_scripts' )
2017-09-28 19:45:15 -07:00
< script nonce = " { { csrf_token() }} " >
2017-08-29 16:00:22 -07:00
$ ( " #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' ) {
2018-10-31 11:13:08 -07:00
$ ( '#audited tbody' ) . prepend ( " <tr class='success'><td> " + data . payload . asset_tag + " </td><td> " + data . messages + " </td><td><i class='fa fa-check text-success'></i></td></tr> " );
2017-08-29 16:00:22 -07:00
incrementOnSuccess ();
} else {
handleAuditFail ( data );
}
2017-09-25 22:15:29 -07:00
$ ( 'input#asset_tag' ) . val ( '' );
2017-08-29 16:00:22 -07:00
},
error : function ( data ) {
handleAuditFail ( data );
},
complete : function () {
$ ( '#audit-loader' ) . hide ();
}
});
return false ;
});
function handleAuditFail ( data ) {
if ( data . asset_tag ) {
var asset_tag = data . asset_tag ;
} else {
var asset_tag = '' ;
}
if ( data . messages ) {
var messages = data . messages ;
} else {
var messages = '' ;
}
2018-10-31 11:13:08 -07:00
$ ( '#audited tbody' ) . prepend ( " <tr class='danger'><td> " + asset_tag + " </td><td> " + messages + " </td><td><i class='fa fa-times text-danger'></i></td></tr> " );
2017-08-29 16:00:22 -07:00
}
function incrementOnSuccess () {
var x = parseInt ( $ ( '#audit-counter' ) . html ());
y = x + 1 ;
$ ( '#audit-counter' ) . html ( y );
}
$ ( " #audit_tag " ) . focus ();
</ script >
@ stop