diff --git a/app/Console/Commands/dumpFleets.php b/app/Console/Commands/dumpFleets.php deleted file mode 100644 index fed18a12b..000000000 --- a/app/Console/Commands/dumpFleets.php +++ /dev/null @@ -1,57 +0,0 @@ -SetStartStatus(); - - //Dump all fleets from the table to start a new day - DB::table('Fleets')->delete(); - - //Mark the job as finished - $task->SetStopStatus(); - } -} diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 7b50080ea..fc953ffb4 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -17,7 +17,6 @@ class Kernel extends ConsoleKernel Commands\GetCorps::class, Commands\SendMail::class, Commands\UpdateMoonPricing::class, - Commands\DumpFleets::class, Commands\CalculateMarketTax::class, Commands\holdingfinances::class, Commands\RunCloneSaver::class, @@ -34,21 +33,18 @@ class Kernel extends ConsoleKernel $schedule->command('services:corpjournal') ->hourly() ->withoutOverlapping(); - $schedule->command('services:getcorps') - ->daily() - ->withoutOverlapping(); + $schedule->command('services:holdingjournal') + ->hourly() + ->withoutOverlapping(); $schedule->command('services:updatemoonprice') - ->hourly() - ->withoutOverlapping(); - $schedule->command('services:dumpfleets') - ->dailyAt('05:00') + ->hourly() + ->withoutOverlapping(); + $schedule->command('services:getcorps') + ->monthlyOn(1, '09:00') ->withoutOverlapping(); $schedule->command('services:calculatemarkettax') ->monthlyOn(1, '08:00') ->withoutOverlapping(); - $schedule->command('services:holdingjournal') - ->hourly() - ->withoutOverlapping(); //$schedule->command('services:clonesaver') // ->everyMinute() // ->withoutOverlapping(); diff --git a/resources/views/layouts/navbar.blade.php b/resources/views/layouts/navbar.blade.php index 7fdb573ca..6d9fdd561 100644 --- a/resources/views/layouts/navbar.blade.php +++ b/resources/views/layouts/navbar.blade.php @@ -38,13 +38,6 @@ Jump Bridge Usage - @if(auth()->user()->hasPermission('logistics.minion') && 0)