fix for bug on bulk route of invoice repo

This commit is contained in:
David Bomba 2020-07-17 07:15:30 +10:00
parent d2cc1e4d65
commit 5eb9791c37

View File

@ -86,7 +86,7 @@ class InvoiceRepository extends BaseRepository
$invoice->service()->handleCancellation()->save();
$invoice = $this->invoice_repo->delete($invoice);
$invoice = parent::delete($invoice);
return $invoice;
}