mirror of
https://gitee.com/celaraze/chemex.git
synced 2024-12-04 04:08:16 +08:00
99 lines
2.2 KiB
PHP
Executable File
99 lines
2.2 KiB
PHP
Executable File
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
use App\Models\SoftwareRecord;
|
|
use App\Models\SoftwareTrack;
|
|
use App\Support\Support;
|
|
use Dcat\EasyExcel\Excel;
|
|
|
|
/**
|
|
* 和软件记录相关的功能服务
|
|
* Class SoftwareRecordService.
|
|
*/
|
|
class SoftwareService
|
|
{
|
|
/**
|
|
* 删除软件.
|
|
*
|
|
* @param $software_id
|
|
*/
|
|
public static function softwareDelete($software_id)
|
|
{
|
|
$software = SoftwareRecord::where('id', $software_id)->first();
|
|
if (!empty($software)) {
|
|
$software->delete();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 删除配件(强制).
|
|
*
|
|
* @param $software_id
|
|
*/
|
|
public static function softwareForceDelete($software_id)
|
|
{
|
|
$software = SoftwareRecord::where('id', $software_id)
|
|
->withTrashed()
|
|
->first();
|
|
if (!empty($software)) {
|
|
$software->forceDelete();
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 软件履历导出.
|
|
*
|
|
* @param $software_id
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public static function exportHistory($software_id): mixed
|
|
{
|
|
$software = SoftwareRecord::where('id', $software_id)->first();
|
|
if (empty($software)) {
|
|
$name = '未知';
|
|
} else {
|
|
$name = $software->name;
|
|
}
|
|
$history = SoftwareService::history($software_id);
|
|
|
|
return Excel::export($history)->download($name . '履历清单.xlsx');
|
|
}
|
|
|
|
/**
|
|
* 获取软件的履历清单.
|
|
*
|
|
* @param $id
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function history($id): array
|
|
{
|
|
$data = [];
|
|
|
|
$single = [
|
|
'type' => '',
|
|
'name' => '',
|
|
'status' => '',
|
|
'style' => '',
|
|
'datetime' => '',
|
|
];
|
|
|
|
$software_tracks = SoftwareTrack::withTrashed()
|
|
->where('software_id', $id)
|
|
->get();
|
|
|
|
foreach ($software_tracks as $software_track) {
|
|
$single['type'] = '设备';
|
|
$single['name'] = optional($software_track->device)->name;
|
|
$data = Support::itemTrack($single, $software_track, $data);
|
|
}
|
|
|
|
$datetime = array_column($data, 'datetime');
|
|
array_multisort($datetime, SORT_DESC, $data);
|
|
|
|
return $data;
|
|
}
|
|
}
|