cleanup of fuel gauge for structures

This commit is contained in:
2019-07-08 23:14:13 -05:00
parent d7d30d30f5
commit e5771980ba
4 changed files with 0 additions and 66 deletions

View File

@@ -84,51 +84,4 @@ class FuelController extends Controller
->with('lava', $lava);
}
/**
* Get the structure id passed to it and display fuel gauage for structure
*/
public function displayStructureFuel($id) {
//Declare class variables
$lava = new Lavacharts;
$aHelper = new AssetHelper(null, null, null);
$structure = Structure::where(['structure_id' => $id])->first();
$name = $structure['structure_name'];
//Get the quantity of liquid ozone in the structure
$liquidOzone = $aHelper->GetAssetByType(16273, $id);
if($liquidOzone > 1000000) {
$liquidOzone = 1000000;
}
$gauge = $lava->DataTable();
$gauge->addStringColumn('Fuel')
->addNumberColumn('Units')
->addRow(['Liquid Ozone', $liquidOzone]);
$lava->GaugeChart('Liquid Ozone', $gauge, [
'min' => 0,
'max' => 1000000,
'width' => 400,
'greenFrom' => 0,
'greenTo' => 150000,
'greenColor' => '#DC3912',
'yellowFrom' => 150000,
'yellowTo' => 300000,
'yellowColor' => '#FF9900',
'redFrom' => 300000,
'redTo' => 1000000,
'redColor' => '#109618',
'majorTicks' => [
'Empty',
'Full',
],
]);
//Return the view
return view('logistics.display.fuelgauge')->with('lava', $lava)
->with('name', $name);
}
}