1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Services/Quote/QuoteService.php
David Bomba 1393179160
Multiple fixes and features (#3411)
* Performance improvements for seeding

* Differentiating between system notification and user notifications

* Remove hard coded webhook url

* Working on system and user notifications

* notifications

* Set the currency on client if blank

* Refactor for inserting invoice defaults

* Refactor Default Invoice/Quote/Credit objects

* working on credits

* Implement mark_sent for quotes and credits
2020-03-03 20:44:26 +11:00

92 lines
1.9 KiB
PHP

<?php
namespace App\Services\Quote;
use App\Models\Quote;
use App\Services\Quote\CreateInvitations;
class QuoteService
{
protected $quote;
public function __construct($quote)
{
$this->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;
}
}