diff --git a/app/Models/Invoice.php b/app/Models/Invoice.php index eb2ede973a4f..1f91badfaa8e 100644 --- a/app/Models/Invoice.php +++ b/app/Models/Invoice.php @@ -601,7 +601,7 @@ class Invoice extends EntityModel implements BalanceAffecting */ public function isSent() { - return $this->invoice_status_id >= INVOICE_STATUS_SENT; + return $this->invoice_status_id >= INVOICE_STATUS_SENT && $this->is_public; } /**