mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #5780 from turbo124/v5-develop
Change logic for Set Reminder
This commit is contained in:
commit
3118cbf018
@ -1 +1 @@
|
||||
5.1.64
|
||||
5.1.65
|
@ -39,8 +39,6 @@ class MarkSent extends AbstractService
|
||||
|
||||
$this->invoice->markInvitationsSent();
|
||||
|
||||
$this->invoice->setReminder();
|
||||
|
||||
$this->invoice
|
||||
->service()
|
||||
->setStatus(Invoice::STATUS_SENT)
|
||||
@ -50,6 +48,8 @@ class MarkSent extends AbstractService
|
||||
->deletePdf()
|
||||
->save();
|
||||
|
||||
$this->invoice->setReminder();
|
||||
|
||||
$this->client->service()->updateBalance($this->invoice->balance)->save();
|
||||
|
||||
$this->invoice->ledger()->updateInvoiceBalance($this->invoice->balance, "Invoice {$this->invoice->number} marked as sent.");
|
||||
|
@ -14,8 +14,8 @@ return [
|
||||
'require_https' => env('REQUIRE_HTTPS', true),
|
||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||
'app_version' => '5.1.64',
|
||||
'app_tag' => '5.1.64-release',
|
||||
'app_version' => '5.1.65',
|
||||
'app_tag' => '5.1.65-release',
|
||||
'minimum_client_version' => '5.0.16',
|
||||
'terms_version' => '1.0.1',
|
||||
'api_secret' => env('API_SECRET', ''),
|
||||
|
Loading…
Reference in New Issue
Block a user