Handle archived user in cron
This commit is contained in:
parent
131e50d02e
commit
429982cb38
2 changed files with 11 additions and 2 deletions
|
|
@ -111,7 +111,7 @@ class SendRecurringInvoices extends Command
|
|||
|
||||
$account = $recurInvoice->account;
|
||||
$account->loadLocalizationSettings($recurInvoice->client);
|
||||
Auth::loginUsingId($recurInvoice->user_id);
|
||||
Auth::loginUsingId($recurInvoice->activeUser()->id);
|
||||
|
||||
try {
|
||||
$invoice = $this->invoiceRepo->createRecurringInvoice($recurInvoice);
|
||||
|
|
@ -157,7 +157,7 @@ class SendRecurringInvoices extends Command
|
|||
continue;
|
||||
}
|
||||
|
||||
Auth::loginUsingId($invoice->user_id);
|
||||
Auth::loginUsingId($recurInvoice->activeUser()->id);
|
||||
$this->paymentService->autoBillInvoice($invoice);
|
||||
Auth::logout();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -690,6 +690,15 @@ class Invoice extends EntityModel implements BalanceAffecting
|
|||
}
|
||||
}
|
||||
|
||||
public function activeUser()
|
||||
{
|
||||
if (! $this->user->trashed()) {
|
||||
return $this->user;
|
||||
}
|
||||
|
||||
return $this->account->users->first();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue