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