Fix product card chart rendering error when there is no shopping location (references #658)

This commit is contained in:
Bernd Bestel
2020-03-25 19:49:10 +01:00
parent a45317aea1
commit c3d4be352d
4 changed files with 11 additions and 3 deletions

View File

@@ -178,7 +178,7 @@ class StockService extends BaseService
$returnData[] = array(
'date' => $row->purchased_date,
'price' => $row->price,
'shopping_location' => FindObjectInArrayByPropertyValue($shoppingLocations, 'id', $row->shopping_location_id)->name,
'shopping_location' => FindObjectInArrayByPropertyValue($shoppingLocations, 'id', $row->shopping_location_id),
);
}
return $returnData;