mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
Fixes for tests
This commit is contained in:
parent
e4fc7fa55a
commit
dd2f9cf545
@ -96,10 +96,10 @@ class MarkPaid extends AbstractService
|
||||
$payment->ledger()
|
||||
->updatePaymentBalance($payment->amount * -1);
|
||||
|
||||
$client = $this->invoice->client->fresh();
|
||||
$client->paid_to_date += $payment->amount;
|
||||
$client->balance += $payment->amount * -1;
|
||||
$client->save();
|
||||
$this->invoice->client->fresh();
|
||||
$this->invoice->client->paid_to_date += $payment->amount;
|
||||
$this->invoice->client->balance += $payment->amount * -1;
|
||||
$this->invoice->client->push();
|
||||
|
||||
$this->invoice = $this->invoice
|
||||
->service()
|
||||
|
Loading…
Reference in New Issue
Block a user