2019-05-02 13:07:38 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-05-02 13:07:38 +02:00
|
|
|
|
|
|
|
namespace App\Repositories;
|
|
|
|
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Factory\QuoteInvitationFactory;
|
2019-10-16 11:28:52 +02:00
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
2019-12-22 11:28:41 +01:00
|
|
|
use App\Jobs\Quote\ApplyQuoteNumber;
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Jobs\Quote\CreateQuoteInvitations;
|
2019-11-16 04:12:29 +01:00
|
|
|
use App\Models\Client;
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Models\ClientContact;
|
2019-05-02 13:07:38 +02:00
|
|
|
use App\Models\Quote;
|
2019-12-17 23:40:15 +01:00
|
|
|
use App\Models\QuoteInvitation;
|
2020-01-07 01:13:47 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2019-05-02 13:07:38 +02:00
|
|
|
use Illuminate\Http\Request;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* QuoteRepository
|
|
|
|
*/
|
|
|
|
class QuoteRepository extends BaseRepository
|
|
|
|
{
|
2020-01-07 01:13:47 +01:00
|
|
|
use MakesHash;
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2019-05-02 13:07:38 +02:00
|
|
|
public function getClassName()
|
|
|
|
{
|
|
|
|
return Quote::class;
|
|
|
|
}
|
2020-02-12 10:21:06 +01:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
public function save($data, Quote $quote) : ?Quote
|
|
|
|
{
|
2020-02-26 22:21:12 +01:00
|
|
|
return $this->alternativeSave($data, $quote);
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2020-02-19 21:44:12 +01:00
|
|
|
|
2020-02-24 11:15:30 +01:00
|
|
|
public function getInvitationByKey($key) :?QuoteInvitation
|
2020-02-19 21:44:12 +01:00
|
|
|
{
|
|
|
|
return QuoteInvitation::whereRaw("BINARY `key`= ?", [$key])->first();
|
|
|
|
}
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|