Reversed order of withTrashed for deleted asset QR codes

This commit is contained in:
snipe 2017-10-17 16:21:50 -07:00
parent a1f5e11517
commit dea42db18b

View file

@ -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';