mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 16:04:32 -04:00
Minor fixes
This commit is contained in:
parent
540e382bd1
commit
d09025367f
@ -312,7 +312,7 @@ class MolliePaymentDriver extends BaseDriver
|
||||
$client = $record->client;
|
||||
}
|
||||
else{
|
||||
$client = Client::withTrashed()->find($this->decodePrimaryKey($payment['metadata']->client_id));
|
||||
$client = Client::withTrashed()->find($this->decodePrimaryKey($payment->metadata->client_id));
|
||||
}
|
||||
|
||||
$message = [
|
||||
|
@ -718,7 +718,7 @@ class SubscriptionService
|
||||
public function convertInvoiceToRecurring($client_id) :RecurringInvoice
|
||||
{
|
||||
|
||||
$client = Client::find($client_id);
|
||||
$client = Client::withTrashed()->find($client_id);
|
||||
|
||||
$subscription_repo = new SubscriptionRepository();
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user