1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-06 03:02:34 +01:00

Working on invoice delete refactor

This commit is contained in:
David Bomba 2020-12-03 14:56:00 +11:00
parent 48f2f469d3
commit 73c9474912
2 changed files with 7 additions and 3 deletions

View File

@ -69,7 +69,8 @@ class InvoiceRepository extends BaseRepository
return $invoice; return $invoice;
} }
$invoice->service()->markDeleted()->handleCancellation()->save(); // $invoice->service()->markDeleted()->handleCancellation()->save();
$invoice->service()->markDeleted()->save();
parent::delete($invoice); parent::delete($invoice);

View File

@ -14,6 +14,7 @@ namespace App\Services\Invoice;
use App\Models\Invoice; use App\Models\Invoice;
use App\Services\AbstractService; use App\Services\AbstractService;
use App\Utils\Traits\GeneratesCounter; use App\Utils\Traits\GeneratesCounter;
use Illuminate\Support\Facades\DB;
class MarkInvoiceDeleted extends AbstractService class MarkInvoiceDeleted extends AbstractService
{ {
@ -44,6 +45,8 @@ class MarkInvoiceDeleted extends AbstractService
->adjustPayments() ->adjustPayments()
->adjustPaidToDate() ->adjustPaidToDate()
->adjustLedger(); ->adjustLedger();
return $this->invoice;
} }
private function adjustLedger() private function adjustLedger()
@ -66,7 +69,7 @@ class MarkInvoiceDeleted extends AbstractService
if($this->adjustment_amount == $this->total_payments) { if($this->adjustment_amount == $this->total_payments) {
$this->invoice->payments()->update(['deleted_at'=> now(), 'is_deleted' => true]); $this->invoice->payments()->update(['payments.deleted_at' => now(), 'payments.is_deleted' => true]);
} }
else { else {