invoice changes

This commit is contained in:
2021-08-01 23:44:00 -05:00
parent 28ca917d5d
commit c77a6e7af6
2 changed files with 2 additions and 4 deletions

View File

@@ -181,12 +181,10 @@ class MiningTaxesAdminController extends Controller
//Get the structure info from the database or esi
$tempObserverInfo = $structure->GetStructureInfo($item['observer_id']);
dd($tempObserverInfo);
//Create the array for the line by line
array_push($moons, [
'character_name' => $item['character_name'],
'observer_name' => $tempObserverInfo->name,
'observer_name' => $tempObserverInfo->structure_name,
'type_id' => $item['type_id'],
'ore_name' => $item['ore_name'],
'quantity' => $item['quantity'],

View File

@@ -381,7 +381,7 @@ class MiningTaxesController extends Controller
//Create the array for the line by line
array_push($moons, [
'character_name' => $item['character_name'],
'observer_name' => $tempObserverInfo->name,
'observer_name' => $tempObserverInfo->structure_name,
'type_id' => $item['type_id'],
'ore_name' => $item['ore_name'],
'quantity' => $item['quantity'],