mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 07:34:06 -08:00
Reversed order of withTrashed for deleted asset QR codes
This commit is contained in:
parent
a1f5e11517
commit
dea42db18b
|
@ -637,7 +637,7 @@ class AssetsController extends Controller
|
|||
$settings = Setting::getSettings();
|
||||
|
||||
if ($settings->qr_code == '1') {
|
||||
$asset = Asset::find($assetId)->withTrashed();
|
||||
$asset = Asset::withTrashed()->find($assetId);
|
||||
$size = Helper::barcodeDimensions($settings->barcode_type);
|
||||
$qr_file = public_path().'/uploads/barcodes/qr-'.str_slug($asset->asset_tag).'-'.str_slug($asset->id).'.png';
|
||||
|
||||
|
|
Loading…
Reference in a new issue