diff --git a/app/Models/Invoice.php b/app/Models/Invoice.php index 4a4099d9f5e6..a8cdd5f5753e 100644 --- a/app/Models/Invoice.php +++ b/app/Models/Invoice.php @@ -667,7 +667,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; } /**