mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-27 19:51:09 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			61 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Crater\Console;
 | |
| 
 | |
| use Crater\Models\CompanySetting;
 | |
| use Crater\Models\RecurringInvoice;
 | |
| use Illuminate\Console\Scheduling\Schedule;
 | |
| use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 | |
| 
 | |
| class Kernel extends ConsoleKernel
 | |
| {
 | |
|     /**
 | |
|      * The Artisan commands provided by your application.
 | |
|      *
 | |
|      * @var array
 | |
|      */
 | |
|     protected $commands = [
 | |
|         Commands\ResetApp::class,
 | |
|         Commands\UpdateCommand::class,
 | |
|         Commands\CreateTemplateCommand::class,
 | |
|         Commands\InstallModuleCommand::class,
 | |
|     ];
 | |
| 
 | |
|     /**
 | |
|      * Define the application's command schedule.
 | |
|      *
 | |
|      * @param  \Illuminate\Console\Scheduling\Schedule $schedule
 | |
|      * @return void
 | |
|      */
 | |
|     protected function schedule(Schedule $schedule)
 | |
|     {
 | |
|         if (\Storage::disk('local')->has('database_created')) {
 | |
|             $schedule->command('check:invoices:status')
 | |
|             ->daily();
 | |
| 
 | |
|             $schedule->command('check:estimates:status')
 | |
|             ->daily();
 | |
| 
 | |
|             $recurringInvoices = RecurringInvoice::where('status', 'ACTIVE')->get();
 | |
|             foreach ($recurringInvoices as $recurringInvoice) {
 | |
|                 $timeZone = CompanySetting::getSetting('time_zone', $recurringInvoice->company_id);
 | |
| 
 | |
|                 $schedule->call(function () use ($recurringInvoice) {
 | |
|                     $recurringInvoice->generateInvoice();
 | |
|                 })->cron($recurringInvoice->frequency)->timezone($timeZone);
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Register the Closure based commands for the application.
 | |
|      *
 | |
|      * @return void
 | |
|      */
 | |
|     protected function commands()
 | |
|     {
 | |
|         $this->load(__DIR__.'/Commands');
 | |
|         require base_path('routes/console.php');
 | |
|     }
 | |
| }
 |