Check for asset before attempting to cite mismatch

This commit is contained in:
snipe 2017-10-28 06:20:44 -07:00
parent 4f1747023a
commit 25b8c4438e

View file

@ -67,15 +67,16 @@ class MigrateDenormedAssetLocations extends Migration
$unassigned_assets=Asset::whereNull("location_id")->get();
foreach($unassigned_assets as $unassigned_asset) {
\Log::info('Asset: ".$unassigned_asset->id." still has no location');
\Log::info('Asset: '.$unassigned_asset->id.' still has no location');
}
Asset::all()->each(function ($asset) {
if($asset->location_id != $asset->assetLoc()->id) {
Asset::get()->each(function ($asset) {
if (($asset) && ($asset->location_id != $asset->assetLoc()->id)) {
\Log::info('MISMATCH MISMATCH '.$asset->id. "doesn't match its location");
}
});
die();
}
/**