mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Merge branch 'develop'
This commit is contained in:
commit
1e1362bdbc
|
@ -1130,12 +1130,14 @@ class AssetsController extends Controller
|
|||
if ($request->has('warranty_months')) {
|
||||
$update_array['warranty_months'] = $request->input('warranty_months');
|
||||
}
|
||||
|
||||
|
||||
if ($request->has('rtd_location_id')) {
|
||||
$update_array['rtd_location_id'] = $request->input('rtd_location_id');
|
||||
if (($request->has('update_real_loc'))
|
||||
&& (($request->input('update_real_loc')) == '1'))
|
||||
{
|
||||
$update_array['location_id'] = $request->input('location_id');
|
||||
$update_array['location_id'] = $request->input('rtd_location_id');
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -61,9 +61,9 @@
|
|||
</div>
|
||||
<div class="col-sm-9">
|
||||
<div class="checkbox">
|
||||
<label for="activated">
|
||||
{{ Form::radio('update_real_loc', '', true) }} Update default location AND actual location <br>
|
||||
{{ Form::radio('update_real_loc', '1', Input::old('activated')) }} Only update default location<br>
|
||||
<label for="update_real_loc">
|
||||
{{ Form::radio('update_real_loc', '1', Input::old('update_real_loc')) }} Update default location AND actual location <br>
|
||||
{{ Form::radio('update_real_loc', '0', true, Input::old('update_real_loc')) }} Only update default location<br>
|
||||
|
||||
</label>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue