mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge pull request #13485 from Godmartinz/history_info_clean_up
Added better handling of information of asset history
This commit is contained in:
commit
303b45c9e9
|
@ -4,6 +4,10 @@ namespace App\Http\Transformers;
|
||||||
use App\Helpers\Helper;
|
use App\Helpers\Helper;
|
||||||
use App\Models\Actionlog;
|
use App\Models\Actionlog;
|
||||||
use App\Models\Setting;
|
use App\Models\Setting;
|
||||||
|
use App\Models\Company;
|
||||||
|
use App\Models\Supplier;
|
||||||
|
use App\Models\Location;
|
||||||
|
use App\Models\AssetModel;
|
||||||
use Illuminate\Database\Eloquent\Collection;
|
use Illuminate\Database\Eloquent\Collection;
|
||||||
|
|
||||||
class ActionlogsTransformer
|
class ActionlogsTransformer
|
||||||
|
@ -53,6 +57,7 @@ class ActionlogsTransformer
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
$clean_meta= $this->changedInfo($clean_meta);
|
||||||
}
|
}
|
||||||
|
|
||||||
$file_url = '';
|
$file_url = '';
|
||||||
|
@ -132,6 +137,49 @@ class ActionlogsTransformer
|
||||||
}
|
}
|
||||||
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* This takes the ids of the changed attributes and returns the names instead for the history view of an Asset
|
||||||
|
*
|
||||||
|
* @param array $clean_meta
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
public function changedInfo(array $clean_meta)
|
||||||
|
{
|
||||||
|
|
||||||
|
if(array_key_exists('rtd_location_id',$clean_meta)) {
|
||||||
|
$clean_meta['rtd_location_id']['old'] = $clean_meta['rtd_location_id']['old'] ? "[id: ".$clean_meta['rtd_location_id']['old']."] ". Location::find($clean_meta['rtd_location_id']['old'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['rtd_location_id']['new'] = $clean_meta['rtd_location_id']['new'] ? "[id: ".$clean_meta['rtd_location_id']['new']."] ". Location::find($clean_meta['rtd_location_id']['new'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['Default Location'] = $clean_meta['rtd_location_id'];
|
||||||
|
unset($clean_meta['rtd_location_id']);
|
||||||
|
}
|
||||||
|
if(array_key_exists('location_id', $clean_meta)) {
|
||||||
|
$clean_meta['location_id']['old'] = $clean_meta['location_id']['old'] ? "[id: ".$clean_meta['location_id']['old']."] ".Location::find($clean_meta['location_id']['old'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['location_id']['new'] = $clean_meta['location_id']['new'] ? "[id: ".$clean_meta['location_id']['new']."] ".Location::find($clean_meta['location_id']['new'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['Current Location'] = $clean_meta['location_id'];
|
||||||
|
unset($clean_meta['location_id']);
|
||||||
|
}
|
||||||
|
if(array_key_exists('model_id', $clean_meta)) {
|
||||||
|
$clean_meta['model_id']['old'] = "[id: ".$clean_meta['model_id']['old']."] ".AssetModel::find($clean_meta['model_id']['old'])->name;
|
||||||
|
$clean_meta['model_id']['new'] = "[id: ".$clean_meta['model_id']['new']."] ".AssetModel::find($clean_meta['model_id']['new'])->name; /* model is required at asset creation */
|
||||||
|
$clean_meta['Model'] = $clean_meta['model_id'];
|
||||||
|
unset($clean_meta['model_id']);
|
||||||
|
}
|
||||||
|
if(array_key_exists('company_id', $clean_meta)) {
|
||||||
|
$clean_meta['company_id']['old'] = $clean_meta['company_id']['old'] ? "[id: ".$clean_meta['company_id']['old']."]".Company::find($clean_meta['company_id']['old'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['company_id']['new'] = $clean_meta['company_id']['new'] ? "[id: ".$clean_meta['company_id']['new']."] ".Company::find($clean_meta['company_id']['new'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['Company'] = $clean_meta['company_id'];
|
||||||
|
unset($clean_meta['company_id']);
|
||||||
|
}
|
||||||
|
if(array_key_exists('supplier_id', $clean_meta)) {
|
||||||
|
$clean_meta['supplier_id']['old'] = $clean_meta['supplier_id']['old'] ? "[id: ".$clean_meta['supplier_id']['old']."] ".Supplier::find($clean_meta['supplier_id']['old'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['supplier_id']['new'] = $clean_meta['supplier_id']['new'] ? "[id: ".$clean_meta['supplier_id']['new']."] ".Supplier::find($clean_meta['supplier_id']['new'])->name : trans('general.unassigned');
|
||||||
|
$clean_meta['Supplier'] = $clean_meta['supplier_id'];
|
||||||
|
unset($clean_meta['supplier_id']);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $clean_meta;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -283,6 +283,7 @@ return [
|
||||||
'user' => 'User',
|
'user' => 'User',
|
||||||
'accepted' => 'accepted',
|
'accepted' => 'accepted',
|
||||||
'declined' => 'declined',
|
'declined' => 'declined',
|
||||||
|
'unassigned' => 'Unassigned',
|
||||||
'unaccepted_asset_report' => 'Unaccepted Assets',
|
'unaccepted_asset_report' => 'Unaccepted Assets',
|
||||||
'users' => 'Users',
|
'users' => 'Users',
|
||||||
'viewall' => 'View All',
|
'viewall' => 'View All',
|
||||||
|
|
Loading…
Reference in a new issue