Fix for is_public

This commit is contained in:
Hillel Coren 2017-05-28 21:38:42 +03:00
parent d5d17d52b9
commit 57913baf09

View File

@ -494,6 +494,7 @@ class Invoice extends EntityModel implements BalanceAffecting
public function markInvitationSent($invitation, $messageId = false, $notify = true, $notes = false)
{
if (! $this->isSent()) {
$this->is_public = true;
$this->invoice_status_id = INVOICE_STATUS_SENT;
$this->save();
}