2019-05-05 02:49:01 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2023-01-28 23:21:40 +01:00
|
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
|
|
use App\Helpers\Invoice\InvoiceSumInclusive;
|
|
|
|
use App\Models\Presenters\RecurringQuotePresenter;
|
|
|
|
use App\Services\Recurring\RecurringService;
|
|
|
|
use App\Utils\Traits\MakesDates;
|
2019-05-05 02:49:01 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2021-08-24 04:57:46 +02:00
|
|
|
use App\Utils\Traits\Recurring\HasRecurrence;
|
2019-05-05 02:49:01 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2020-03-29 14:22:14 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2021-08-24 04:57:46 +02:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-24 04:57:46 +02:00
|
|
|
* Class for Recurring Quotes.
|
2023-03-08 08:33:42 +01:00
|
|
|
*
|
|
|
|
* @property int $id
|
|
|
|
* @property int $client_id
|
|
|
|
* @property int $user_id
|
|
|
|
* @property int|null $assigned_user_id
|
|
|
|
* @property int $company_id
|
|
|
|
* @property int|null $project_id
|
|
|
|
* @property int|null $vendor_id
|
|
|
|
* @property int $status_id
|
|
|
|
* @property float $discount
|
|
|
|
* @property int $is_amount_discount
|
|
|
|
* @property string|null $number
|
|
|
|
* @property string|null $po_number
|
|
|
|
* @property string|null $date
|
|
|
|
* @property string|null $due_date
|
|
|
|
* @property int $is_deleted
|
|
|
|
* @property object|null $line_items
|
|
|
|
* @property object|null $backup
|
|
|
|
* @property string|null $footer
|
|
|
|
* @property string|null $public_notes
|
|
|
|
* @property string|null $private_notes
|
|
|
|
* @property string|null $terms
|
|
|
|
* @property string|null $tax_name1
|
|
|
|
* @property string $tax_rate1
|
|
|
|
* @property string|null $tax_name2
|
|
|
|
* @property string $tax_rate2
|
|
|
|
* @property string|null $tax_name3
|
|
|
|
* @property string $tax_rate3
|
|
|
|
* @property string $total_taxes
|
|
|
|
* @property string|null $custom_value1
|
|
|
|
* @property string|null $custom_value2
|
|
|
|
* @property string|null $custom_value3
|
|
|
|
* @property string|null $custom_value4
|
|
|
|
* @property string $amount
|
|
|
|
* @property string $balance
|
|
|
|
* @property string|null $last_viewed
|
|
|
|
* @property int $frequency_id
|
|
|
|
* @property string|null $last_sent_date
|
|
|
|
* @property string|null $next_send_date
|
|
|
|
* @property int|null $remaining_cycles
|
|
|
|
* @property int|null $created_at
|
|
|
|
* @property int|null $updated_at
|
|
|
|
* @property int|null $deleted_at
|
|
|
|
* @property string $auto_bill
|
|
|
|
* @property int $auto_bill_enabled
|
|
|
|
* @property string $paid_to_date
|
|
|
|
* @property string|null $custom_surcharge1
|
|
|
|
* @property string|null $custom_surcharge2
|
|
|
|
* @property string|null $custom_surcharge3
|
|
|
|
* @property string|null $custom_surcharge4
|
|
|
|
* @property int $custom_surcharge_tax1
|
|
|
|
* @property int $custom_surcharge_tax2
|
|
|
|
* @property int $custom_surcharge_tax3
|
|
|
|
* @property int $custom_surcharge_tax4
|
|
|
|
* @property string|null $due_date_days
|
|
|
|
* @property string $exchange_rate
|
|
|
|
* @property string|null $partial
|
|
|
|
* @property string|null $partial_due_date
|
|
|
|
* @property int|null $subscription_id
|
|
|
|
* @property int $uses_inclusive_taxes
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
|
|
|
* @property-read int|null $activities_count
|
|
|
|
* @property-read \App\Models\User|null $assigned_user
|
|
|
|
* @property-read \App\Models\Client $client
|
|
|
|
* @property-read \App\Models\Company $company
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read int|null $documents_count
|
|
|
|
* @property-read mixed $hashed_id
|
|
|
|
* @property-read mixed $status
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read int|null $history_count
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read int|null $invitations_count
|
|
|
|
* @property-read \App\Models\Project|null $project
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
|
|
|
* @property-read int|null $quotes_count
|
|
|
|
* @property-read \App\Models\User $user
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel company()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel exclude($columns)
|
|
|
|
* @method static \Database\Factories\RecurringQuoteFactory factory($count = null, $state = [])
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote filter(\App\Filters\QueryFilters $filters)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote newModelQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote newQuery()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote onlyTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote query()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|BaseModel scope()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereAmount($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereAssignedUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereAutoBill($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereAutoBillEnabled($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereBackup($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereBalance($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereClientId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCompanyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCreatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurcharge1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurcharge2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurcharge3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurcharge4($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurchargeTax1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurchargeTax2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurchargeTax3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomSurchargeTax4($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomValue1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomValue2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomValue3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereCustomValue4($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereDeletedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereDiscount($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereDueDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereDueDateDays($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereExchangeRate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereFooter($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereFrequencyId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereIsAmountDiscount($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereIsDeleted($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereLastSentDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereLastViewed($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereLineItems($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereNextSendDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereNumber($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote wherePaidToDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote wherePartial($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote wherePartialDueDate($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote wherePoNumber($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote wherePrivateNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereProjectId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote wherePublicNotes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereRemainingCycles($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereStatusId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereSubscriptionId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTaxName1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTaxName2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTaxName3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTaxRate1($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTaxRate2($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTaxRate3($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTerms($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereTotalTaxes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereUpdatedAt($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereUserId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereUsesInclusiveTaxes($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote whereVendorId($value)
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote withTrashed()
|
|
|
|
* @method static \Illuminate\Database\Eloquent\Builder|RecurringQuote withoutTrashed()
|
2023-03-16 05:20:38 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-03-24 08:02:34 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-03-27 05:47:01 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-03-27 22:47:07 +02:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-03-21 12:37:06 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-03-24 02:12:12 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Activity> $activities
|
2023-03-16 05:20:38 +01:00
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Document> $documents
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Backup> $history
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\RecurringQuoteInvitation> $invitations
|
|
|
|
* @property-read \Illuminate\Database\Eloquent\Collection<int, \App\Models\Quote> $quotes
|
2023-03-08 08:33:42 +01:00
|
|
|
* @mixin \Eloquent
|
2019-05-05 02:49:01 +02:00
|
|
|
*/
|
|
|
|
class RecurringQuote extends BaseModel
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use SoftDeletes;
|
|
|
|
use Filterable;
|
2021-08-24 04:57:46 +02:00
|
|
|
use MakesDates;
|
|
|
|
use HasRecurrence;
|
|
|
|
use PresentableTrait;
|
|
|
|
|
|
|
|
protected $presenter = RecurringQuotePresenter::class;
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-24 04:57:46 +02:00
|
|
|
* Quote Statuses.
|
2019-05-05 02:49:01 +02:00
|
|
|
*/
|
2021-08-24 04:57:46 +02:00
|
|
|
const STATUS_DRAFT = 1;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const STATUS_ACTIVE = 2;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const STATUS_PAUSED = 3;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const STATUS_COMPLETED = 4;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2019-05-05 02:49:01 +02:00
|
|
|
const STATUS_PENDING = -1;
|
|
|
|
|
|
|
|
/**
|
2021-08-24 04:57:46 +02:00
|
|
|
* Quote Frequencies.
|
2019-05-05 02:49:01 +02:00
|
|
|
*/
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_DAILY = 1;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_WEEKLY = 2;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_TWO_WEEKS = 3;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_FOUR_WEEKS = 4;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_MONTHLY = 5;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_TWO_MONTHS = 6;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_THREE_MONTHS = 7;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_FOUR_MONTHS = 8;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_SIX_MONTHS = 9;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_ANNUALLY = 10;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_TWO_YEARS = 11;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
const FREQUENCY_THREE_YEARS = 12;
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
const RECURS_INDEFINITELY = -1;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-06-26 06:04:10 +02:00
|
|
|
protected $fillable = [
|
|
|
|
'client_id',
|
2021-08-24 04:57:46 +02:00
|
|
|
'project_id',
|
|
|
|
'number',
|
2019-06-26 06:04:10 +02:00
|
|
|
'discount',
|
|
|
|
'is_amount_discount',
|
|
|
|
'po_number',
|
2021-08-24 04:57:46 +02:00
|
|
|
'date',
|
|
|
|
'due_date',
|
|
|
|
'due_date_days',
|
2019-06-26 06:04:10 +02:00
|
|
|
'line_items',
|
|
|
|
'footer',
|
2021-08-24 04:57:46 +02:00
|
|
|
'public_notes',
|
2019-06-26 06:04:10 +02:00
|
|
|
'private_notes',
|
|
|
|
'terms',
|
|
|
|
'tax_name1',
|
|
|
|
'tax_name2',
|
2019-10-05 04:28:23 +02:00
|
|
|
'tax_name3',
|
2019-06-26 06:04:10 +02:00
|
|
|
'tax_rate1',
|
|
|
|
'tax_rate2',
|
2019-10-05 04:28:23 +02:00
|
|
|
'tax_rate3',
|
2019-06-26 06:04:10 +02:00
|
|
|
'custom_value1',
|
|
|
|
'custom_value2',
|
|
|
|
'custom_value3',
|
|
|
|
'custom_value4',
|
|
|
|
'amount',
|
2021-08-24 04:57:46 +02:00
|
|
|
'partial',
|
2019-06-26 06:04:10 +02:00
|
|
|
'frequency_id',
|
2021-08-24 04:57:46 +02:00
|
|
|
'next_send_date',
|
|
|
|
'remaining_cycles',
|
|
|
|
'auto_bill',
|
|
|
|
'auto_bill_enabled',
|
|
|
|
'design_id',
|
|
|
|
'custom_surcharge1',
|
|
|
|
'custom_surcharge2',
|
|
|
|
'custom_surcharge3',
|
|
|
|
'custom_surcharge4',
|
|
|
|
'custom_surcharge_tax1',
|
|
|
|
'custom_surcharge_tax2',
|
|
|
|
'custom_surcharge_tax3',
|
|
|
|
'custom_surcharge_tax4',
|
|
|
|
'design_id',
|
|
|
|
'assigned_user_id',
|
|
|
|
'exchange_rate',
|
2019-06-26 06:04:10 +02:00
|
|
|
];
|
2019-05-05 02:49:01 +02:00
|
|
|
|
|
|
|
protected $casts = [
|
2021-08-24 04:57:46 +02:00
|
|
|
'settings' => 'object',
|
2020-03-29 14:22:14 +02:00
|
|
|
'line_items' => 'object',
|
2020-06-15 01:34:18 +02:00
|
|
|
'backup' => 'object',
|
2019-09-26 00:27:26 +02:00
|
|
|
'updated_at' => 'timestamp',
|
|
|
|
'created_at' => 'timestamp',
|
|
|
|
'deleted_at' => 'timestamp',
|
2019-05-05 02:49:01 +02:00
|
|
|
];
|
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
protected $appends = [
|
|
|
|
'hashed_id',
|
|
|
|
'status',
|
2019-05-05 02:49:01 +02:00
|
|
|
];
|
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
protected $touches = [];
|
|
|
|
|
2020-05-06 13:49:42 +02:00
|
|
|
public function getEntityType()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::class;
|
2020-05-06 13:49:42 +02:00
|
|
|
}
|
|
|
|
|
2020-04-04 12:32:42 +02:00
|
|
|
public function getDateAttribute($value)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! empty($value)) {
|
2020-04-04 12:32:42 +02:00
|
|
|
return (new Carbon($value))->format('Y-m-d');
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-29 14:22:14 +02:00
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2020-04-04 12:32:42 +02:00
|
|
|
public function getDueDateAttribute($value)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! empty($value)) {
|
2020-04-04 12:32:42 +02:00
|
|
|
return (new Carbon($value))->format('Y-m-d');
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-29 14:22:14 +02:00
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2020-04-04 12:32:42 +02:00
|
|
|
public function getPartialDueDateAttribute($value)
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
if (! empty($value)) {
|
2020-04-04 12:32:42 +02:00
|
|
|
return (new Carbon($value))->format('Y-m-d');
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2020-03-29 14:22:14 +02:00
|
|
|
return $value;
|
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
public function activities()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Activity::class)->orderBy('id', 'DESC')->take(50);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function history()
|
|
|
|
{
|
|
|
|
return $this->hasManyThrough(Backup::class, Activity::class);
|
|
|
|
}
|
|
|
|
|
2019-05-05 02:49:01 +02:00
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function client()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-05-05 02:49:01 +02:00
|
|
|
}
|
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
public function project()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Project::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-05-05 02:49:01 +02:00
|
|
|
public function user()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2019-05-05 02:49:01 +02:00
|
|
|
}
|
|
|
|
|
2019-11-05 11:16:38 +01:00
|
|
|
public function assigned_user()
|
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
return $this->belongsTo(User::class, 'assigned_user_id', 'id')->withTrashed();
|
2019-11-05 11:16:38 +01:00
|
|
|
}
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
public function quotes()
|
|
|
|
{
|
|
|
|
return $this->hasMany(Quote::class, 'recurring_id', 'id')->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-05-05 02:49:01 +02:00
|
|
|
public function invitations()
|
|
|
|
{
|
2021-08-24 04:57:46 +02:00
|
|
|
return $this->hasMany(RecurringQuoteInvitation::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getStatusAttribute()
|
|
|
|
{
|
|
|
|
if ($this->status_id == self::STATUS_ACTIVE && Carbon::parse($this->next_send_date)->isFuture()) {
|
|
|
|
return self::STATUS_PENDING;
|
|
|
|
} else {
|
|
|
|
return $this->status_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function nextSendDate() :?Carbon
|
|
|
|
{
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! $this->next_send_date) {
|
2021-08-24 04:57:46 +02:00
|
|
|
return null;
|
|
|
|
}
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2021-08-24 04:57:46 +02:00
|
|
|
$offset = $this->client->timezone_offset();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
/*
|
2021-08-24 04:57:46 +02:00
|
|
|
As we are firing at UTC+0 if our offset is negative it is technically firing the day before so we always need
|
|
|
|
to add ON a day - a day = 86400 seconds
|
|
|
|
*/
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($offset < 0) {
|
2021-08-24 04:57:46 +02:00
|
|
|
$offset += 86400;
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-08-24 04:57:46 +02:00
|
|
|
|
|
|
|
switch ($this->frequency_id) {
|
|
|
|
case self::FREQUENCY_DAILY:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addDay()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_WEEKLY:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addWeek()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_TWO_WEEKS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addWeeks(2)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_FOUR_WEEKS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addWeeks(4)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_MONTHLY:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addMonthNoOverflow()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_TWO_MONTHS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addMonthsNoOverflow(2)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_THREE_MONTHS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addMonthsNoOverflow(3)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_FOUR_MONTHS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addMonthsNoOverflow(4)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_SIX_MONTHS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addMonthsNoOverflow(6)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_ANNUALLY:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addYear()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_TWO_YEARS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addYears(2)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_THREE_YEARS:
|
|
|
|
return Carbon::parse($this->next_send_date)->startOfDay()->addYears(3)->addSeconds($offset);
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function nextDateByFrequency($date)
|
|
|
|
{
|
|
|
|
$offset = $this->client->timezone_offset();
|
|
|
|
|
|
|
|
switch ($this->frequency_id) {
|
|
|
|
case self::FREQUENCY_DAILY:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addDay()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_WEEKLY:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addWeek()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_TWO_WEEKS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addWeeks(2)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_FOUR_WEEKS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addWeeks(4)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_MONTHLY:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addMonthNoOverflow()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_TWO_MONTHS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addMonthsNoOverflow(2)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_THREE_MONTHS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addMonthsNoOverflow(3)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_FOUR_MONTHS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addMonthsNoOverflow(4)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_SIX_MONTHS:
|
|
|
|
return Carbon::parse($date)->addMonthsNoOverflow(6)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_ANNUALLY:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addYear()->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_TWO_YEARS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addYears(2)->addSeconds($offset);
|
|
|
|
case self::FREQUENCY_THREE_YEARS:
|
|
|
|
return Carbon::parse($date)->startOfDay()->addYears(3)->addSeconds($offset);
|
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function remainingCycles() : int
|
|
|
|
{
|
|
|
|
if ($this->remaining_cycles == 0) {
|
|
|
|
return 0;
|
|
|
|
} elseif ($this->remaining_cycles == -1) {
|
|
|
|
return -1;
|
|
|
|
} else {
|
|
|
|
return $this->remaining_cycles - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setCompleted() : void
|
|
|
|
{
|
|
|
|
$this->status_id = self::STATUS_COMPLETED;
|
|
|
|
$this->next_send_date = null;
|
|
|
|
$this->remaining_cycles = 0;
|
|
|
|
$this->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function badgeForStatus(int $status)
|
|
|
|
{
|
|
|
|
switch ($status) {
|
|
|
|
case self::STATUS_DRAFT:
|
|
|
|
return '<h4><span class="badge badge-light">'.ctrans('texts.draft').'</span></h4>';
|
|
|
|
break;
|
|
|
|
case self::STATUS_PENDING:
|
|
|
|
return '<h4><span class="badge badge-primary">'.ctrans('texts.pending').'</span></h4>';
|
|
|
|
break;
|
|
|
|
case self::STATUS_ACTIVE:
|
|
|
|
return '<h4><span class="badge badge-primary">'.ctrans('texts.active').'</span></h4>';
|
|
|
|
break;
|
|
|
|
case self::STATUS_COMPLETED:
|
|
|
|
return '<h4><span class="badge badge-success">'.ctrans('texts.status_completed').'</span></h4>';
|
|
|
|
break;
|
|
|
|
case self::STATUS_PAUSED:
|
|
|
|
return '<h4><span class="badge badge-danger">'.ctrans('texts.paused').'</span></h4>';
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// code...
|
|
|
|
break;
|
|
|
|
}
|
2019-05-05 02:49:01 +02:00
|
|
|
}
|
2021-08-24 04:57:46 +02:00
|
|
|
|
|
|
|
public static function frequencyForKey(int $frequency_id) :string
|
|
|
|
{
|
|
|
|
switch ($frequency_id) {
|
|
|
|
case self::FREQUENCY_DAILY:
|
|
|
|
return ctrans('texts.freq_daily');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_WEEKLY:
|
|
|
|
return ctrans('texts.freq_weekly');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_TWO_WEEKS:
|
|
|
|
return ctrans('texts.freq_two_weeks');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_FOUR_WEEKS:
|
|
|
|
return ctrans('texts.freq_four_weeks');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_MONTHLY:
|
|
|
|
return ctrans('texts.freq_monthly');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_TWO_MONTHS:
|
|
|
|
return ctrans('texts.freq_two_months');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_THREE_MONTHS:
|
|
|
|
return ctrans('texts.freq_three_months');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_FOUR_MONTHS:
|
|
|
|
return ctrans('texts.freq_four_months');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_SIX_MONTHS:
|
|
|
|
return ctrans('texts.freq_six_months');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_ANNUALLY:
|
|
|
|
return ctrans('texts.freq_annually');
|
|
|
|
break;
|
|
|
|
case self::FREQUENCY_TWO_YEARS:
|
|
|
|
return ctrans('texts.freq_two_years');
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// code...
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function calc()
|
|
|
|
{
|
|
|
|
$invoice_calc = null;
|
|
|
|
|
|
|
|
if ($this->uses_inclusive_taxes) {
|
|
|
|
$invoice_calc = new InvoiceSumInclusive($this);
|
|
|
|
} else {
|
|
|
|
$invoice_calc = new InvoiceSum($this);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $invoice_calc->build();
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Important to note when playing with carbon dates - in order
|
|
|
|
* not to modify the original instance, always use a `->copy()`
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public function recurringDates()
|
|
|
|
{
|
|
|
|
/* Return early if nothing to send back! */
|
|
|
|
if ($this->status_id == self::STATUS_COMPLETED ||
|
|
|
|
$this->remaining_cycles == 0 ||
|
2022-06-21 11:57:17 +02:00
|
|
|
! $this->next_send_date) {
|
2021-08-24 04:57:46 +02:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Endless - lets send 10 back*/
|
|
|
|
$iterations = $this->remaining_cycles;
|
|
|
|
|
|
|
|
if ($this->remaining_cycles == -1) {
|
|
|
|
$iterations = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = [];
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
if (! Carbon::parse($this->next_send_date)) {
|
2021-08-24 04:57:46 +02:00
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
$next_send_date = Carbon::parse($this->next_send_date)->copy();
|
|
|
|
|
2022-06-21 11:57:17 +02:00
|
|
|
for ($x = 0; $x < $iterations; $x++) {
|
2021-08-24 04:57:46 +02:00
|
|
|
// we don't add the days... we calc the day of the month!!
|
|
|
|
$next_due_date = $this->calculateDueDate($next_send_date->copy()->format('Y-m-d'));
|
|
|
|
$next_due_date_string = $next_due_date ? $next_due_date->format('Y-m-d') : '';
|
|
|
|
|
|
|
|
$next_send_date = Carbon::parse($next_send_date);
|
|
|
|
|
|
|
|
$data[] = [
|
|
|
|
'send_date' => $next_send_date->format('Y-m-d'),
|
2022-06-21 11:57:17 +02:00
|
|
|
'due_date' => $next_due_date_string,
|
2021-08-24 04:57:46 +02:00
|
|
|
];
|
|
|
|
|
|
|
|
/* Fixes the timeshift in case the offset is negative which cause a infinite loop due to UTC +0*/
|
2022-06-21 11:57:17 +02:00
|
|
|
if ($this->client->timezone_offset() < 0) {
|
2021-08-24 04:57:46 +02:00
|
|
|
$next_send_date = $this->nextDateByFrequency($next_send_date->addDay()->format('Y-m-d'));
|
2022-06-21 11:57:17 +02:00
|
|
|
} else {
|
2021-08-24 04:57:46 +02:00
|
|
|
$next_send_date = $this->nextDateByFrequency($next_send_date->format('Y-m-d'));
|
2022-06-21 11:57:17 +02:00
|
|
|
}
|
2021-08-24 04:57:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function calculateDueDate($date)
|
|
|
|
{
|
|
|
|
switch ($this->due_date_days) {
|
|
|
|
case 'terms':
|
|
|
|
return $this->calculateDateFromTerms($date);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return $this->setDayOfMonth($date, $this->due_date_days);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates a date based on the client payment terms.
|
|
|
|
*
|
|
|
|
* @param Carbon $date A given date
|
2022-06-21 11:57:17 +02:00
|
|
|
* @return null|Carbon The date
|
2021-08-24 04:57:46 +02:00
|
|
|
*/
|
|
|
|
public function calculateDateFromTerms($date)
|
|
|
|
{
|
|
|
|
$new_date = Carbon::parse($date);
|
|
|
|
|
|
|
|
$client_payment_terms = $this->client->getSetting('payment_terms');
|
|
|
|
|
|
|
|
if ($client_payment_terms == '') {//no due date! return null;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $new_date->addDays($client_payment_terms); //add the number of days in the payment terms to the date
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Service entry points.
|
|
|
|
*/
|
|
|
|
public function service() :RecurringService
|
|
|
|
{
|
|
|
|
return new RecurringService($this);
|
|
|
|
}
|
|
|
|
|
2022-04-06 02:38:01 +02:00
|
|
|
public function translate_entity()
|
|
|
|
{
|
|
|
|
return ctrans('texts.recurring_quote');
|
|
|
|
}
|
2019-05-05 02:49:01 +02:00
|
|
|
}
|