akaunting/app/Console/Commands/BillReminder.php

94 lines
2.1 KiB
PHP
Raw Normal View History

2017-09-14 22:21:00 +03:00
<?php
namespace App\Console\Commands;
2018-06-10 02:48:51 +03:00
use App\Models\Common\Company;
2017-09-14 22:21:00 +03:00
use App\Models\Expense\Bill;
use App\Notifications\Expense\Bill as Notification;
2018-02-20 18:24:17 +03:00
use App\Utilities\Overrider;
use Date;
2017-09-14 22:21:00 +03:00
use Illuminate\Console\Command;
class BillReminder extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'reminder:bill';
/**
* The console command description.
*
* @var string
*/
protected $description = 'Send reminders for bills';
/**
* Create a new command instance.
*/
public function __construct()
{
parent::__construct();
}
/**
* Execute the console command.
*
* @return mixed
*/
public function handle()
{
// Get all companies
$companies = Company::all();
foreach ($companies as $company) {
2018-02-20 18:24:17 +03:00
// Set company id
session(['company_id' => $company->id]);
// Override settings and currencies
Overrider::load('settings');
Overrider::load('currencies');
2017-09-14 22:21:00 +03:00
$company->setSettings();
2018-06-03 00:30:08 +03:00
// Don't send reminders if disabled
if (!$company->send_bill_reminder) {
continue;
}
2017-09-14 22:21:00 +03:00
$days = explode(',', $company->schedule_bill_days);
foreach ($days as $day) {
2017-12-05 18:37:51 +03:00
$day = (int) trim($day);
$this->remind($day, $company);
2017-09-14 22:21:00 +03:00
}
}
2018-02-20 18:24:17 +03:00
// Unset company_id
session()->forget('company_id');
2017-09-14 22:21:00 +03:00
}
protected function remind($day, $company)
{
// Get due date
$date = Date::today()->addDays($day)->toDateString();
// Get upcoming bills
2018-03-09 22:00:17 +03:00
$bills = Bill::with('vendor')->accrued()->notPaid()->due($date)->get();
2017-09-14 22:21:00 +03:00
foreach ($bills as $bill) {
// Notify all users assigned to this company
foreach ($company->users as $user) {
if (!$user->can('read-notifications')) {
continue;
}
$user->notify(new Notification($bill));
}
}
}
}