invoice changes

This commit is contained in:
2021-08-01 23:37:52 -05:00
parent 339b1063c6
commit 35591ab04c
2 changed files with 2 additions and 2 deletions

View File

@@ -153,8 +153,8 @@ class MiningTaxesAdminController extends Controller
$ores = array(); $ores = array();
$moons = array(); $moons = array();
$totalPrice = 0.00; $totalPrice = 0.00;
$structure = new StructureHelper;
$config = config('esi'); $config = config('esi');
$structure = new StructureHelper($config['primary'], $config['corporation']);
//Get the invoice from the database //Get the invoice from the database
$invoice = Invoice::where([ $invoice = Invoice::where([

View File

@@ -346,8 +346,8 @@ class MiningTaxesController extends Controller
$ores = array(); $ores = array();
$moons = array(); $moons = array();
$totalPrice = 0.00; $totalPrice = 0.00;
$structure = new StructureHelper;
$config = config('esi'); $config = config('esi');
$structure = new StructureHelper($config['primary'], $config['corporation']);
$systems = AllianceMoon::where([ $systems = AllianceMoon::where([
'rented' => 'No', 'rented' => 'No',