mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-25 13:44:06 -08:00
kill transaction, try update array
This commit is contained in:
parent
ad6b502005
commit
101bd9c404
|
@ -23,8 +23,7 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
|
||||||
|
|
||||||
|
|
||||||
// Update the eol_explicit column with the value from asset_eol_date if it exists and is different from the calculated value
|
// Update the eol_explicit column with the value from asset_eol_date if it exists and is different from the calculated value
|
||||||
//$assetsToUpdateEolExplicit = [];
|
$assetsToUpdateEolExplicit = [];
|
||||||
DB::transaction(function() {
|
|
||||||
Asset::whereNotNull('asset_eol_date')->with('model')->chunkById(500, function ($assetsWithEolDates) {
|
Asset::whereNotNull('asset_eol_date')->with('model')->chunkById(500, function ($assetsWithEolDates) {
|
||||||
foreach ($assetsWithEolDates as $asset) {
|
foreach ($assetsWithEolDates as $asset) {
|
||||||
if ($asset->asset_eol_date && $asset->purchase_date) {
|
if ($asset->asset_eol_date && $asset->purchase_date) {
|
||||||
|
@ -35,20 +34,19 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
|
||||||
}
|
}
|
||||||
if ($asset->model->eol) {
|
if ($asset->model->eol) {
|
||||||
if ($months != $asset->model->eol) {
|
if ($months != $asset->model->eol) {
|
||||||
//$assetToUpdateEolExplicit = $asset->id;
|
$assetsToUpdateEolExplicit = $asset->id;
|
||||||
$asset->update(['eol_explicit' => true]);
|
$asset->update(['eol_explicit' => true]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
$assetsToUpdateEolExplicit = $asset->id;
|
||||||
$asset->update(['eol_explicit' => true]);
|
$asset->update(['eol_explicit' => true]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
Asset::whereIn('id', $assetsToUpdateEolExplicit)->update(['eol_explicit' => true]);
|
||||||
//Asset::whereIn('id', $assetToUpdateEolExplicit)->update(['eol_explicit' => true]);
|
|
||||||
|
|
||||||
// Update the asset_eol_date column with the calculated value if it doesn't exist
|
// Update the asset_eol_date column with the calculated value if it doesn't exist
|
||||||
DB::transaction(function () {
|
|
||||||
Asset::whereNull('asset_eol_date')->with('model')->chunkById(500, function ($assets) {
|
Asset::whereNull('asset_eol_date')->with('model')->chunkById(500, function ($assets) {
|
||||||
foreach ($assets as $asset) {
|
foreach ($assets as $asset) {
|
||||||
if ($asset->model->eol && $asset->purchase_date) {
|
if ($asset->model->eol && $asset->purchase_date) {
|
||||||
|
@ -61,7 +59,6 @@ class DenormalizedEolAndAddColumnForExplicitDateToAssets extends Migration
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue