Merge branch 'develop'

This commit is contained in:
snipe 2018-02-02 09:42:50 -06:00
commit 1e1362bdbc
2 changed files with 6 additions and 4 deletions

View file

@ -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');
}
}

View file

@ -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>