mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge pull request #10209 from Godmartinz/feature/sc-1474/sync-parent-asset-location-with-children-assets
Fixes Bug: When parent asset is assigned to other location, children assets loca…
This commit is contained in:
commit
3088230236
|
@ -39,6 +39,8 @@ trait CheckInOutRequest
|
||||||
switch (request('checkout_to_type')) {
|
switch (request('checkout_to_type')) {
|
||||||
case 'location':
|
case 'location':
|
||||||
$asset->location_id = $target->id;
|
$asset->location_id = $target->id;
|
||||||
|
Asset::where('assigned_type', 'App\Models\Asset')->where('assigned_to', $asset->id)
|
||||||
|
->update(['location_id' => $asset->location_id]);
|
||||||
break;
|
break;
|
||||||
case 'asset':
|
case 'asset':
|
||||||
$asset->location_id = $target->rtd_location_id;
|
$asset->location_id = $target->rtd_location_id;
|
||||||
|
|
Loading…
Reference in a new issue