mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Check for rtd_location_id before trying to assign
This commit is contained in:
parent
cfec142c3b
commit
b4fa4c77d7
|
@ -646,13 +646,11 @@ class AssetsController extends Controller
|
|||
$asset_name = request('name', null);
|
||||
|
||||
// Set the location ID to the RTD location id if there is one
|
||||
if ($asset->rtd_location_id!='') {
|
||||
if ((isset($target->rtd_location_id)) && ($asset->rtd_location_id!='')) {
|
||||
$asset->location_id = $target->rtd_location_id;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
if ($asset->checkOut($target, Auth::user(), $checkout_at, $expected_checkin, $note, $asset_name, $asset->location_id)) {
|
||||
return response()->json(Helper::formatStandardApiResponse('success', ['asset'=> e($asset->asset_tag)], trans('admin/hardware/message.checkout.success')));
|
||||
|
|
Loading…
Reference in a new issue