Use withTrashed() to get the barcode on deleted assets

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2024-02-09 20:26:49 +00:00
parent ca62481083
commit fa47707974

View file

@ -521,7 +521,7 @@ class AssetsController extends Controller
public function getBarCode($assetId = null)
{
$settings = Setting::getSettings();
$asset = Asset::find($assetId);
$asset = Asset::withTrashed()->find($assetId);
$barcode_file = public_path().'/uploads/barcodes/'.str_slug($settings->alt_barcode).'-'.str_slug($asset->asset_tag).'.png';
if (isset($asset->id, $asset->asset_tag)) {