updated asset in asset helper

This commit is contained in:
2019-07-08 23:30:58 -05:00
parent 9e198c3102
commit 7f49fbc107
2 changed files with 12 additions and 17 deletions

View File

@@ -89,7 +89,7 @@ class ProcessAssetsJob implements ShouldQueue
foreach($assets as $asset) { foreach($assets as $asset) {
//If the asset is in one of the locations we want, then store //If the asset is in one of the locations we want, then store
//or update the asset //or update the asset
if(in_array($asset->location_flag, $this->location_array)) { if(in_array($this->location_array, $asset->location_flag)) {
//Attempt to store the asset //Attempt to store the asset
$aHelper->StoreNewAsset($asset); $aHelper->StoreNewAsset($asset);
} }

View File

@@ -134,23 +134,18 @@ class AssetHelper {
* Update an existing asset based off the esi pull * Update an existing asset based off the esi pull
*/ */
private function UpdateAsset($asset) { private function UpdateAsset($asset) {
$count = Asset::where([
'item_id' => $asset->item_id,
])->count();
if($count != 0) { Asset::where([
Asset::where([ 'item_id' => $asset->item_id,
'item_id' => $asset->item_id, ])->update([
])->update([ 'is_singleton' => $asset->is_singleton,
'is_singleton' => $asset->is_singleton, 'location_flag' => $asset->location_flag,
'location_flag' => $asset->location_flag, 'location_id' => $asset->location_id,
'location_id' => $asset->location_id, 'location_type' => $asset->location_type,
'location_type' => $asset->location_type, 'quantity' => $asset->quantity,
'quantity' => $asset->quantity, 'type_id' => $asset->type_id,
'type_id' => $asset->type_id, 'updated_at' => Carbon::now(),
'updated_at' => Carbon::now(), ]);
]);
}
} }
} }