mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Enhanced #5762 Able to bulk edit expected checkin date
In light of the need to edit 500+ devices #5762 (comment) I added the expected checkin date to the bulk edit page for assets
This commit is contained in:
parent
7a433f8598
commit
567a9639f4
|
@ -78,6 +78,7 @@ class BulkAssetsController extends Controller
|
||||||
$assets = array_keys($request->input('ids'));
|
$assets = array_keys($request->input('ids'));
|
||||||
|
|
||||||
if (($request->filled('purchase_date'))
|
if (($request->filled('purchase_date'))
|
||||||
|
|| ($request->filled('expected_checkin'))
|
||||||
|| ($request->filled('purchase_cost'))
|
|| ($request->filled('purchase_cost'))
|
||||||
|| ($request->filled('supplier_id'))
|
|| ($request->filled('supplier_id'))
|
||||||
|| ($request->filled('order_number'))
|
|| ($request->filled('order_number'))
|
||||||
|
@ -92,6 +93,7 @@ class BulkAssetsController extends Controller
|
||||||
$this->update_array = [];
|
$this->update_array = [];
|
||||||
|
|
||||||
$this->conditionallyAddItem('purchase_date')
|
$this->conditionallyAddItem('purchase_date')
|
||||||
|
->conditionallyAddItem('expected_checkin')
|
||||||
->conditionallyAddItem('model_id')
|
->conditionallyAddItem('model_id')
|
||||||
->conditionallyAddItem('order_number')
|
->conditionallyAddItem('order_number')
|
||||||
->conditionallyAddItem('requestable')
|
->conditionallyAddItem('requestable')
|
||||||
|
|
|
@ -39,6 +39,18 @@
|
||||||
{!! $errors->first('purchase_date', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
{!! $errors->first('purchase_date', '<span class="alert-msg"><i class="fa fa-times"></i> :message</span>') !!}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<!-- Expected Checkin Date -->
|
||||||
|
<div class="form-group {{ $errors->has('expected_checkin') ? ' has-error' : '' }}">
|
||||||
|
<label for="expected_checkin" class="col-md-3 control-label">{{ trans('admin/hardware/form.expected_checkin') }}</label>
|
||||||
|
<div class="input-group col-md-3">
|
||||||
|
<div class="input-group date" data-provide="datepicker" data-date-format="yyyy-mm-dd" data-autoclose="true">
|
||||||
|
<input type="text" class="form-control" placeholder="{{ trans('general.select_date') }}" name="expected_checkin" id="expected_checkin" value="{{ Input::old('expected_checkin') }}">
|
||||||
|
<span class="input-group-addon"><i class="fa fa-calendar" aria-hidden="true"></i></span>
|
||||||
|
</div>
|
||||||
|
{!! $errors->first('expected_checkin', '<span class="alert-msg" aria-hidden="true"><i class="fa fa-times" aria-hidden="true"></i> :message</span>') !!}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<!-- Status -->
|
<!-- Status -->
|
||||||
<div class="form-group {{ $errors->has('status_id') ? ' has-error' : '' }}">
|
<div class="form-group {{ $errors->has('status_id') ? ' has-error' : '' }}">
|
||||||
|
|
Loading…
Reference in a new issue