mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Dashbpoard pie fixes
This commit is contained in:
parent
4cdcbc97ee
commit
d36e8cfbd2
|
@ -161,19 +161,22 @@ class StatuslabelsController extends Controller
|
||||||
public function getAssetCountByStatuslabel()
|
public function getAssetCountByStatuslabel()
|
||||||
{
|
{
|
||||||
|
|
||||||
$statusLabels = Statuslabel::get();
|
$statuslabels = Statuslabel::with('assets')->groupBy('id')->withCount('assets')->get();
|
||||||
|
|
||||||
$labels=[];
|
$labels=[];
|
||||||
$points=[];
|
$points=[];
|
||||||
$colors=[];
|
$colors=[];
|
||||||
foreach ($statusLabels as $statusLabel) {
|
foreach ($statuslabels as $statuslabel) {
|
||||||
if ($statusLabel->assets()->count() > 0) {
|
if ($statuslabel->assets_count > 0) {
|
||||||
$labels[]=$statusLabel->name;
|
|
||||||
$points[]=$statusLabel->assets()->whereNull('assigned_to')->count();
|
$labels[]=$statuslabel->name. ' ('.number_format($statuslabel->assets_count).')';
|
||||||
if ($statusLabel->color!='') {
|
$points[]=$statuslabel->assets_count;
|
||||||
$colors[]=$statusLabel->color;
|
if ($statuslabel->color!='') {
|
||||||
|
$colors[]=$statuslabel->color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$colors_array = array_merge($colors, Helper::chartColors());
|
$colors_array = array_merge($colors, Helper::chartColors());
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue