mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 05:04:07 -08:00
This commit is contained in:
parent
6ce20c32b1
commit
208ccab4c1
|
@ -381,9 +381,12 @@ class Asset extends Depreciable
|
|||
$settings = \App\Models\Setting::getSettings();
|
||||
|
||||
if ($settings->auto_increment_assets == '1') {
|
||||
$asset_tag = \DB::table('assets')
|
||||
$temp_asset_tag = \DB::table('assets')
|
||||
->where('physical', '=', '1')
|
||||
->max('id');
|
||||
->max('asset_tag');
|
||||
|
||||
$asset_tag_digits = number_format(preg_replace('/\D/', '', $temp_asset_tag));
|
||||
$asset_tag = number_format(preg_replace('/^0*/', '', $asset_tag_digits));
|
||||
|
||||
if ($settings->zerofill_count > 0) {
|
||||
return $settings->auto_increment_prefix.Asset::zerofill(($asset_tag + 1), $settings->zerofill_count);
|
||||
|
|
Loading…
Reference in a new issue