quote = $quote; } public function createInvitations() { $create_invitation = new CreateInvitations(); $this->quote = $create_invitation->run($this->quote); return $this; } public function markApproved() { $mark_approved = new MarkApproved($this->quote->client); $this->quote = $mark_approved->run($this->quote); if($this->quote->client->getSetting('auto_convert_quote') === true) { $convert_quote = new ConvertQuote($this->quote->client); $this->quote = $convert_quote->run($this->quote); } return $this; } public function getQuotePdf($contact) { $get_invoice_pdf = new GetQuotePdf(); return $get_invoice_pdf($this->quote, $contact); } public function sendEmail($contact) { $send_email = new SendEmail($this->quote); return $send_email->run(null, $contact); } /** * Applies the invoice number * @return $this InvoiceService object */ public function applyNumber() { $apply_number = new ApplyNumber($this->quote->client); $this->quote = $apply_number->run($this->quote); return $this; } public function markSent() { $mark_sent = new MarkSent($this->quote->client); $this->quote = $mark_sent->run($this->quote); return $this; } public function setStatus($status) { $this->quote->status_id = $status; return $this; } /** * Saves the quote * @return Quote|null */ public function save() : ?Quote { $this->quote->save(); return $this->quote; } }