2016-03-25 01:18:05 -07:00
|
|
|
@extends('layouts/default')
|
|
|
|
|
|
|
|
{{-- Page title --}}
|
|
|
|
@section('title')
|
2020-04-21 11:28:31 -07:00
|
|
|
{{ trans('admin/hardware/general.checkout') }}
|
|
|
|
@parent
|
2016-03-25 01:18:05 -07:00
|
|
|
@stop
|
|
|
|
|
|
|
|
{{-- Page content --}}
|
|
|
|
@section('content')
|
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<style>
|
2016-04-23 02:36:08 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
.input-group {
|
|
|
|
padding-left: 0px !important;
|
|
|
|
}
|
|
|
|
</style>
|
2016-04-23 02:36:08 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="row">
|
|
|
|
<!-- left column -->
|
|
|
|
<div class="col-md-7">
|
|
|
|
<div class="box box-default">
|
|
|
|
<form class="form-horizontal" method="post" action="" autocomplete="off">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h2 class="box-title"> {{ trans('admin/hardware/form.tag') }} {{ $asset->asset_tag }}</h2>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
|
|
{{csrf_field()}}
|
2023-02-06 12:21:09 -08:00
|
|
|
@if ($asset->company && $asset->company->name)
|
|
|
|
<div class="form-group">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="company" class="col-md-3 control-label">
|
|
|
|
{{ trans('general.company') }}
|
|
|
|
</label>
|
2023-02-06 12:21:09 -08:00
|
|
|
<div class="col-md-8">
|
|
|
|
<p class="form-control-static">
|
|
|
|
{{ $asset->company->name }}
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
2024-05-31 10:47:34 -07:00
|
|
|
|
|
|
|
<!-- AssetModel name -->
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="form-group">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="model" class="col-md-3 control-label">
|
|
|
|
{{ trans('general.company') }}
|
|
|
|
</label>
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="col-md-8">
|
|
|
|
<p class="form-control-static">
|
|
|
|
@if (($asset->model) && ($asset->model->name))
|
|
|
|
{{ $asset->model->name }}
|
|
|
|
@else
|
|
|
|
<span class="text-danger text-bold">
|
2024-05-31 11:29:29 -07:00
|
|
|
<i class="fas fa-exclamation-triangle" aria-hidden="true"></i>
|
|
|
|
{{ trans('admin/hardware/general.model_invalid')}}
|
|
|
|
</span>
|
|
|
|
|
2024-05-31 10:47:34 -07:00
|
|
|
{{ trans('admin/hardware/general.model_invalid_fix')}}
|
|
|
|
<a href="{{ route('hardware.edit', $asset->id) }}">
|
|
|
|
<strong>{{ trans('admin/hardware/general.edit') }}</strong>
|
|
|
|
</a>
|
2020-04-21 11:28:31 -07:00
|
|
|
@endif
|
|
|
|
</p>
|
|
|
|
</div>
|
2018-10-15 17:02:31 -07:00
|
|
|
</div>
|
2017-10-26 02:28:17 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<!-- Asset Name -->
|
|
|
|
<div class="form-group {{ $errors->has('name') ? 'error' : '' }}">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="name" class="col-md-3 control-label">
|
|
|
|
{{ trans('admin/hardware/form.name') }}
|
|
|
|
</label>
|
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="col-md-8">
|
|
|
|
<input class="form-control" type="text" name="name" id="name" value="{{ old('name', $asset->name) }}" tabindex="1">
|
2021-09-26 01:11:08 -07:00
|
|
|
{!! $errors->first('name', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
2020-04-21 11:28:31 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-02-03 01:29:54 -08:00
|
|
|
|
|
|
|
<!-- Status -->
|
|
|
|
<div class="form-group {{ $errors->has('status_id') ? 'error' : '' }}">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="status_id" class="col-md-3 control-label">
|
|
|
|
{{ trans('admin/hardware/form.status') }}
|
|
|
|
</label>
|
2021-02-03 01:29:54 -08:00
|
|
|
<div class="col-md-7 required">
|
|
|
|
{{ Form::select('status_id', $statusLabel_list, $asset->status_id, array('class'=>'select2', 'style'=>'width:100%','', 'aria-label'=>'status_id')) }}
|
2021-09-26 01:11:08 -07:00
|
|
|
{!! $errors->first('status_id', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
2021-02-03 01:29:54 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
@include ('partials.forms.checkout-selector', ['user_select' => 'true','asset_select' => 'true', 'location_select' => 'true'])
|
2018-05-21 17:35:04 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
@include ('partials.forms.edit.user-select', ['translated_name' => trans('general.user'), 'fieldname' => 'assigned_user', 'required'=>'true'])
|
2017-10-28 01:00:26 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<!-- We have to pass unselect here so that we don't default to the asset that's being checked out. We want that asset to be pre-selected everywhere else. -->
|
|
|
|
@include ('partials.forms.edit.asset-select', ['translated_name' => trans('general.asset'), 'fieldname' => 'assigned_asset', 'unselect' => 'true', 'style' => 'display:none;', 'required'=>'true'])
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
@include ('partials.forms.edit.location-select', ['translated_name' => trans('general.location'), 'fieldname' => 'assigned_location', 'style' => 'display:none;', 'required'=>'true'])
|
2016-12-27 12:03:47 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-10-28 01:00:26 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<!-- Checkout/Checkin Date -->
|
|
|
|
<div class="form-group {{ $errors->has('checkout_at') ? 'error' : '' }}">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="checkout_at" class="col-md-3 control-label">
|
|
|
|
{{ trans('admin/hardware/form.checkout_date') }}
|
|
|
|
</label>
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="col-md-8">
|
2022-09-26 14:34:35 -07:00
|
|
|
<div class="input-group date col-md-7" data-provide="datepicker" data-date-format="yyyy-mm-dd" data-date-end-date="0d" data-date-clear-btn="true">
|
2021-01-26 12:06:58 -08:00
|
|
|
<input type="text" class="form-control" placeholder="{{ trans('general.select_date') }}" name="checkout_at" id="checkout_at" value="{{ old('checkout_at', date('Y-m-d')) }}">
|
2021-09-26 01:11:08 -07:00
|
|
|
<span class="input-group-addon"><i class="fas fa-calendar" aria-hidden="true"></i></span>
|
2020-04-21 11:28:31 -07:00
|
|
|
</div>
|
2021-09-26 01:11:08 -07:00
|
|
|
{!! $errors->first('checkout_at', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
2020-04-21 11:28:31 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2017-10-28 01:00:26 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<!-- Expected Checkin Date -->
|
|
|
|
<div class="form-group {{ $errors->has('expected_checkin') ? 'error' : '' }}">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="expected_checkin" class="col-md-3 control-label">
|
|
|
|
{{ trans('admin/hardware/form.expected_checkin') }}
|
|
|
|
</label>
|
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="col-md-8">
|
2022-09-26 14:34:35 -07:00
|
|
|
<div class="input-group date col-md-7" data-provide="datepicker" data-date-format="yyyy-mm-dd" data-date-start-date="0d" data-date-clear-btn="true">
|
2020-04-21 11:28:31 -07:00
|
|
|
<input type="text" class="form-control" placeholder="{{ trans('general.select_date') }}" name="expected_checkin" id="expected_checkin" value="{{ old('expected_checkin') }}">
|
2021-09-26 01:11:08 -07:00
|
|
|
<span class="input-group-addon"><i class="fas fa-calendar" aria-hidden="true"></i></span>
|
2020-04-21 11:28:31 -07:00
|
|
|
</div>
|
2021-09-26 01:11:08 -07:00
|
|
|
{!! $errors->first('expected_checkin', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
2020-04-21 11:28:31 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-03-25 13:46:57 -07:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<!-- Note -->
|
|
|
|
<div class="form-group {{ $errors->has('note') ? 'error' : '' }}">
|
2024-06-23 10:24:23 -07:00
|
|
|
<label for="note" class="col-md-3 control-label">
|
|
|
|
{{ trans('general.notes') }}
|
|
|
|
</label>
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="col-md-8">
|
|
|
|
<textarea class="col-md-6 form-control" id="note" name="note">{{ old('note', $asset->note) }}</textarea>
|
2021-09-26 01:11:08 -07:00
|
|
|
{!! $errors->first('note', '<span class="alert-msg" aria-hidden="true"><i class="fas fa-times" aria-hidden="true"></i> :message</span>') !!}
|
2017-10-28 01:00:26 -07:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-21 11:28:31 -07:00
|
|
|
|
2023-03-22 14:43:00 -07:00
|
|
|
@if ($asset->requireAcceptance() || $asset->getEula() || ($snipeSettings->webhook_endpoint!=''))
|
2020-04-21 11:28:31 -07:00
|
|
|
<div class="form-group notification-callout">
|
|
|
|
<div class="col-md-8 col-md-offset-3">
|
|
|
|
<div class="callout callout-info">
|
|
|
|
|
|
|
|
@if ($asset->requireAcceptance())
|
2021-09-24 13:07:02 -07:00
|
|
|
<i class="far fa-envelope" aria-hidden="true"></i>
|
2020-04-21 11:28:31 -07:00
|
|
|
{{ trans('admin/categories/general.required_acceptance') }}
|
|
|
|
<br>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
@if ($asset->getEula())
|
2021-09-24 13:07:02 -07:00
|
|
|
<i class="far fa-envelope" aria-hidden="true"></i>
|
2020-04-21 11:28:31 -07:00
|
|
|
{{ trans('admin/categories/general.required_eula') }}
|
|
|
|
<br>
|
|
|
|
@endif
|
|
|
|
|
2023-03-22 14:43:00 -07:00
|
|
|
@if ($snipeSettings->webhook_endpoint!='')
|
2021-09-26 01:11:08 -07:00
|
|
|
<i class="fab fa-slack" aria-hidden="true"></i>
|
2023-03-22 14:43:00 -07:00
|
|
|
{{ trans('general.webhook_msg_note') }}
|
2020-04-21 11:28:31 -07:00
|
|
|
@endif
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
|
|
|
|
</div> <!--/.box-body-->
|
2024-05-31 10:47:34 -07:00
|
|
|
@include ('partials.forms.redirect_submit_options',
|
|
|
|
[
|
|
|
|
'route' => 'hardware.index',
|
|
|
|
'table_name' => $table_name,
|
|
|
|
'type'=> ($asset->model ? $asset->model->name : trans('general.asset_model')),
|
|
|
|
'checkin' => false
|
|
|
|
])
|
2020-04-21 11:28:31 -07:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div> <!--/.col-md-7-->
|
2016-12-27 12:03:47 -08:00
|
|
|
|
2020-04-21 11:28:31 -07:00
|
|
|
<!-- right column -->
|
|
|
|
<div class="col-md-5" id="current_assets_box" style="display:none;">
|
|
|
|
<div class="box box-primary">
|
|
|
|
<div class="box-header with-border">
|
|
|
|
<h2 class="box-title">{{ trans('admin/users/general.current_assets') }}</h2>
|
|
|
|
</div>
|
|
|
|
<div class="box-body">
|
|
|
|
<div id="current_assets_content">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2016-12-27 12:03:47 -08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@stop
|
2016-06-09 00:36:52 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
@section('moar_scripts')
|
2017-10-31 04:47:59 -07:00
|
|
|
@include('partials/assets-assigned')
|
2017-12-01 17:52:56 -08:00
|
|
|
|
|
|
|
<script>
|
2020-04-21 11:28:31 -07:00
|
|
|
// $('#checkout_at').datepicker({
|
|
|
|
// clearBtn: true,
|
|
|
|
// todayHighlight: true,
|
|
|
|
// endDate: '0d',
|
|
|
|
// format: 'yyyy-mm-dd'
|
|
|
|
// });
|
2017-12-01 17:52:56 -08:00
|
|
|
|
|
|
|
|
|
|
|
</script>
|
2023-02-06 12:21:09 -08:00
|
|
|
@stop
|