2019-04-23 14:22:13 +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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-23 14:22:13 +02:00
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-09-13 12:20:11 +02:00
|
|
|
use App\Helpers\Invoice\InvoiceSum;
|
|
|
|
use App\Helpers\Invoice\InvoiceSumInclusive;
|
2021-01-15 03:02:55 +01:00
|
|
|
use App\Models\Presenters\RecurringInvoicePresenter;
|
2020-09-24 02:57:44 +02:00
|
|
|
use App\Services\Recurring\RecurringService;
|
2019-11-05 23:52:57 +01:00
|
|
|
use App\Utils\Traits\MakesDates;
|
2019-04-23 14:22:13 +02:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-09-14 14:13:15 +02:00
|
|
|
use App\Utils\Traits\Recurring\HasRecurrence;
|
2019-04-23 14:22:13 +02:00
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
2019-05-23 08:15:06 +02:00
|
|
|
use Illuminate\Support\Carbon;
|
2021-01-15 03:02:55 +01:00
|
|
|
use Laracasts\Presenter\PresentableTrait;
|
2019-04-23 14:22:13 +02:00
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
/**
|
|
|
|
* Class for Recurring Invoices.
|
|
|
|
*/
|
2019-04-23 14:22:13 +02:00
|
|
|
class RecurringInvoice extends BaseModel
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
use SoftDeletes;
|
|
|
|
use Filterable;
|
2019-11-05 23:52:57 +01:00
|
|
|
use MakesDates;
|
2020-09-14 14:13:15 +02:00
|
|
|
use HasRecurrence;
|
2021-01-15 03:02:55 +01:00
|
|
|
use PresentableTrait;
|
|
|
|
|
|
|
|
protected $presenter = RecurringInvoicePresenter::class;
|
2020-09-14 14:13:15 +02:00
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Statuses.
|
2019-05-03 00:29:04 +02:00
|
|
|
*/
|
2020-09-23 02:16:19 +02:00
|
|
|
const STATUS_DRAFT = 1;
|
|
|
|
const STATUS_ACTIVE = 2;
|
|
|
|
const STATUS_PAUSED = 3;
|
|
|
|
const STATUS_COMPLETED = 4;
|
2019-05-03 09:35:49 +02:00
|
|
|
const STATUS_PENDING = -1;
|
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
/**
|
2020-10-07 02:20:28 +02:00
|
|
|
* Invoice Frequencies.
|
2019-05-03 00:29:04 +02:00
|
|
|
*/
|
2019-11-10 13:06:30 +01:00
|
|
|
const FREQUENCY_DAILY = 1;
|
|
|
|
const FREQUENCY_WEEKLY = 2;
|
|
|
|
const FREQUENCY_TWO_WEEKS = 3;
|
|
|
|
const FREQUENCY_FOUR_WEEKS = 4;
|
|
|
|
const FREQUENCY_MONTHLY = 5;
|
|
|
|
const FREQUENCY_TWO_MONTHS = 6;
|
|
|
|
const FREQUENCY_THREE_MONTHS = 7;
|
|
|
|
const FREQUENCY_FOUR_MONTHS = 8;
|
|
|
|
const FREQUENCY_SIX_MONTHS = 9;
|
|
|
|
const FREQUENCY_ANNUALLY = 10;
|
|
|
|
const FREQUENCY_TWO_YEARS = 11;
|
2019-11-27 10:47:59 +01:00
|
|
|
const FREQUENCY_THREE_YEARS = 12;
|
2019-05-03 00:29:04 +02:00
|
|
|
|
2019-05-05 02:49:01 +02:00
|
|
|
const RECURS_INDEFINITELY = -1;
|
2020-09-06 11:38:10 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
protected $fillable = [
|
|
|
|
'client_id',
|
2020-10-14 22:58:20 +02:00
|
|
|
'project_id',
|
2019-11-27 11:27:24 +01:00
|
|
|
'number',
|
2019-07-03 11:58:34 +02:00
|
|
|
'discount',
|
2019-06-26 06:04:10 +02:00
|
|
|
'is_amount_discount',
|
|
|
|
'po_number',
|
2019-11-27 11:27:24 +01:00
|
|
|
'date',
|
2019-06-26 06:04:10 +02:00
|
|
|
'due_date',
|
2020-09-13 12:20:11 +02:00
|
|
|
'due_date_days',
|
2019-06-26 06:04:10 +02:00
|
|
|
'line_items',
|
|
|
|
'footer',
|
2019-07-03 11:58:34 +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',
|
2019-07-03 11:58:34 +02:00
|
|
|
'partial',
|
|
|
|
'frequency_id',
|
2020-09-16 12:08:51 +02:00
|
|
|
'next_send_date',
|
|
|
|
'remaining_cycles',
|
2020-09-23 02:16:19 +02:00
|
|
|
'auto_bill',
|
2020-09-24 05:40:13 +02:00
|
|
|
'auto_bill_enabled',
|
2021-01-11 22:57:48 +01:00
|
|
|
'design_id',
|
2021-02-23 02:17:46 +01:00
|
|
|
'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-12-30 22:59:12 +01:00
|
|
|
];
|
2019-04-23 14:22:13 +02:00
|
|
|
|
|
|
|
protected $casts = [
|
2019-05-24 11:23:38 +02:00
|
|
|
'settings' => 'object',
|
|
|
|
'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-04-23 14:22:13 +02:00
|
|
|
];
|
|
|
|
|
2019-08-15 13:10:02 +02:00
|
|
|
protected $appends = [
|
|
|
|
'hashed_id',
|
2020-09-06 11:38:10 +02:00
|
|
|
'status',
|
2019-05-03 00:29:04 +02:00
|
|
|
];
|
|
|
|
|
2020-07-23 05:55:11 +02:00
|
|
|
protected $touches = [];
|
2020-07-16 13:01:39 +02:00
|
|
|
|
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
|
|
|
|
2019-04-23 14:22:13 +02:00
|
|
|
public function company()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Company::class);
|
|
|
|
}
|
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
public function client()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(Client::class)->withTrashed();
|
2019-05-03 00:29:04 +02:00
|
|
|
}
|
|
|
|
|
2021-02-26 21:48:49 +01:00
|
|
|
public function project()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Project::class)->withTrashed();
|
|
|
|
}
|
|
|
|
|
2019-04-23 14:22:13 +02:00
|
|
|
public function user()
|
|
|
|
{
|
2019-11-25 10:38:55 +01:00
|
|
|
return $this->belongsTo(User::class)->withTrashed();
|
2019-04-23 14:22:13 +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
|
|
|
|
2019-10-22 13:27:03 +02:00
|
|
|
public function invoices()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
return $this->hasMany(Invoice::class, 'id', 'recurring_id')->withTrashed();
|
2019-10-22 13:27:03 +02:00
|
|
|
}
|
|
|
|
|
2019-04-23 14:22:13 +02:00
|
|
|
public function invitations()
|
|
|
|
{
|
2020-09-18 09:04:28 +02:00
|
|
|
return $this->hasMany(RecurringInvoiceInvitation::class);
|
2019-04-23 14:22:13 +02:00
|
|
|
}
|
2019-05-23 07:08:31 +02:00
|
|
|
|
2020-09-17 23:49:22 +02:00
|
|
|
public function documents()
|
|
|
|
{
|
|
|
|
return $this->morphMany(Document::class, 'documentable');
|
|
|
|
}
|
|
|
|
|
2019-08-15 13:10:02 +02:00
|
|
|
public function getStatusAttribute()
|
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($this->status_id == self::STATUS_ACTIVE && Carbon::parse($this->next_send_date)->isFuture()) {
|
2020-09-06 11:38:10 +02:00
|
|
|
return self::STATUS_PENDING;
|
2020-11-25 15:19:52 +01:00
|
|
|
} else {
|
2019-08-15 13:10:02 +02:00
|
|
|
return $this->status_id;
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2019-08-15 13:10:02 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 08:15:06 +02:00
|
|
|
public function nextSendDate() :?Carbon
|
2019-05-23 07:08:31 +02:00
|
|
|
{
|
2020-11-25 15:19:52 +01:00
|
|
|
if (!$this->next_send_date) {
|
2020-09-27 11:22:34 +02:00
|
|
|
return null;
|
|
|
|
// $this->next_send_date = now()->format('Y-m-d');
|
|
|
|
}
|
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
switch ($this->frequency_id) {
|
2021-01-02 00:01:33 +01:00
|
|
|
case self::FREQUENCY_DAILY:
|
|
|
|
return Carbon::parse($this->next_send_date)->addDay();
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_WEEKLY:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addWeek();
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_TWO_WEEKS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addWeeks(2);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_FOUR_WEEKS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addWeeks(4);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_MONTHLY:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addMonthNoOverflow();
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_TWO_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addMonthsNoOverflow(2);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_THREE_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addMonthsNoOverflow(3);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_FOUR_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addMonthsNoOverflow(4);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_SIX_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addMonthsNoOverflow(6);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_ANNUALLY:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addYear();
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_TWO_YEARS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addYears(2);
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_THREE_YEARS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($this->next_send_date)->addYears(3);
|
2019-05-23 07:08:31 +02:00
|
|
|
default:
|
2019-05-23 08:15:06 +02:00
|
|
|
return null;
|
|
|
|
}
|
2019-05-23 07:08:31 +02:00
|
|
|
}
|
|
|
|
|
2020-09-13 12:20:11 +02:00
|
|
|
public function nextDateByFrequency($date)
|
|
|
|
{
|
|
|
|
switch ($this->frequency_id) {
|
2021-01-02 00:01:33 +01:00
|
|
|
case self::FREQUENCY_DAILY:
|
2021-01-03 08:08:08 +01:00
|
|
|
return Carbon::parse($date)->addDay();
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_WEEKLY:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addWeek();
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_TWO_WEEKS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addWeeks(2);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_FOUR_WEEKS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addWeeks(4);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_MONTHLY:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addMonthNoOverflow();
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_TWO_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addMonthsNoOverflow(2);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_THREE_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addMonthsNoOverflow(3);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_FOUR_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addMonthsNoOverflow(4);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_SIX_MONTHS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addMonthsNoOverflow(6);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_ANNUALLY:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addYear();
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_TWO_YEARS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addYears(2);
|
2020-09-13 12:20:11 +02:00
|
|
|
case self::FREQUENCY_THREE_YEARS:
|
2020-09-24 13:03:59 +02:00
|
|
|
return Carbon::parse($date)->addYears(3);
|
2020-09-13 12:20:11 +02:00
|
|
|
default:
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-23 08:15:06 +02:00
|
|
|
public function remainingCycles() : int
|
2019-05-23 07:08:31 +02:00
|
|
|
{
|
2019-12-30 22:59:12 +01:00
|
|
|
if ($this->remaining_cycles == 0) {
|
2019-05-23 07:08:31 +02:00
|
|
|
return 0;
|
2020-11-25 15:19:52 +01:00
|
|
|
} elseif ($this->remaining_cycles == -1) {
|
2020-09-12 12:33:12 +02:00
|
|
|
return -1;
|
2020-11-25 15:19:52 +01:00
|
|
|
} else {
|
2019-05-23 07:08:31 +02:00
|
|
|
return $this->remaining_cycles - 1;
|
2019-12-30 22:59:12 +01:00
|
|
|
}
|
2019-05-23 07:08:31 +02:00
|
|
|
}
|
|
|
|
|
2019-05-23 08:15:06 +02:00
|
|
|
public function setCompleted() : void
|
2019-05-23 07:08:31 +02:00
|
|
|
{
|
|
|
|
$this->status_id = self::STATUS_COMPLETED;
|
|
|
|
$this->next_send_date = null;
|
2019-05-23 08:15:06 +02:00
|
|
|
$this->remaining_cycles = 0;
|
2019-05-23 07:08:31 +02:00
|
|
|
$this->save();
|
|
|
|
}
|
2019-08-15 13:10:02 +02:00
|
|
|
|
|
|
|
public static function badgeForStatus(int $status)
|
|
|
|
{
|
|
|
|
switch ($status) {
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_DRAFT:
|
2019-08-15 13:10:02 +02:00
|
|
|
return '<h4><span class="badge badge-light">'.ctrans('texts.draft').'</span></h4>';
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_PENDING:
|
2020-09-23 02:16:19 +02:00
|
|
|
return '<h4><span class="badge badge-primary">'.ctrans('texts.pending').'</span></h4>';
|
2019-08-15 13:10:02 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_ACTIVE:
|
2020-09-23 02:16:19 +02:00
|
|
|
return '<h4><span class="badge badge-primary">'.ctrans('texts.active').'</span></h4>';
|
2019-08-15 13:10:02 +02:00
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::STATUS_COMPLETED:
|
2019-08-15 13:10:02 +02:00
|
|
|
return '<h4><span class="badge badge-success">'.ctrans('texts.status_completed').'</span></h4>';
|
|
|
|
break;
|
2020-09-23 02:16:19 +02:00
|
|
|
case self::STATUS_PAUSED:
|
|
|
|
return '<h4><span class="badge badge-danger">'.ctrans('texts.paused').'</span></h4>';
|
2019-12-30 22:59:12 +01:00
|
|
|
break;
|
2019-08-15 13:10:02 +02:00
|
|
|
default:
|
2020-09-06 11:38:10 +02:00
|
|
|
// code...
|
2019-08-15 13:10:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function frequencyForKey(int $frequency_id) :string
|
|
|
|
{
|
|
|
|
switch ($frequency_id) {
|
2021-01-03 08:56:42 +01:00
|
|
|
case self::FREQUENCY_DAILY:
|
|
|
|
return ctrans('texts.freq_daily');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_WEEKLY:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_weekly');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_TWO_WEEKS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_two_weeks');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_FOUR_WEEKS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_four_weeks');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_MONTHLY:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_monthly');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_TWO_MONTHS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_two_months');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_THREE_MONTHS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_three_months');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_FOUR_MONTHS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_four_months');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_SIX_MONTHS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_six_months');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_ANNUALLY:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_annually');
|
|
|
|
break;
|
2020-09-06 11:38:10 +02:00
|
|
|
case self::FREQUENCY_TWO_YEARS:
|
2019-08-15 13:10:02 +02:00
|
|
|
return ctrans('texts.freq_two_years');
|
2019-12-30 22:59:12 +01:00
|
|
|
break;
|
2019-08-15 13:10:02 +02:00
|
|
|
default:
|
2020-09-06 11:38:10 +02:00
|
|
|
// code...
|
2019-08-15 13:10:02 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-07-01 13:33:42 +02:00
|
|
|
|
2020-09-13 12:20:11 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
/*
|
|
|
|
* Important to note when playing with carbon dates - in order
|
2020-09-13 12:20:11 +02:00
|
|
|
* not to modify the original instance, always use a `->copy()`
|
2020-11-25 15:19:52 +01:00
|
|
|
*
|
2020-09-13 12:20:11 +02:00
|
|
|
*/
|
2020-07-01 13:33:42 +02:00
|
|
|
public function recurringDates()
|
|
|
|
{
|
2020-09-14 13:11:46 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
/* Return early if nothing to send back! */
|
|
|
|
if ($this->status_id == self::STATUS_COMPLETED ||
|
2020-09-13 12:20:11 +02:00
|
|
|
$this->remaining_cycles == 0 ||
|
|
|
|
!$this->next_send_date) {
|
2020-09-12 12:33:12 +02:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Endless - lets send 10 back*/
|
|
|
|
$iterations = $this->remaining_cycles;
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($this->remaining_cycles == -1) {
|
2020-09-12 12:33:12 +02:00
|
|
|
$iterations = 10;
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-12-30 23:18:29 +01:00
|
|
|
|
|
|
|
$data = [];
|
2020-09-12 12:33:12 +02:00
|
|
|
|
2021-01-04 13:38:00 +01:00
|
|
|
if (!Carbon::parse($this->next_send_date)) {
|
2021-01-01 23:51:13 +01:00
|
|
|
return $data;
|
2021-01-04 13:38:00 +01:00
|
|
|
}
|
2020-09-12 12:33:12 +02:00
|
|
|
|
2021-01-01 23:52:42 +01:00
|
|
|
$next_send_date = Carbon::parse($this->next_send_date)->copy();
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
for ($x=0; $x<$iterations; $x++) {
|
2020-09-24 13:30: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'));
|
2020-10-06 03:36:25 +02:00
|
|
|
$next_due_date_string = $next_due_date ? $next_due_date->format('Y-m-d') : '';
|
2020-10-04 11:47:38 +02:00
|
|
|
|
2020-09-13 12:20:11 +02:00
|
|
|
$next_send_date = Carbon::parse($next_send_date);
|
2020-09-12 12:33:12 +02:00
|
|
|
|
2020-09-13 12:20:11 +02:00
|
|
|
$data[] = [
|
2020-11-25 15:19:52 +01:00
|
|
|
'send_date' => $next_send_date->format('Y-m-d'),
|
2020-10-06 03:36:25 +02:00
|
|
|
'due_date' => $next_due_date_string
|
2020-09-13 12:20:11 +02:00
|
|
|
];
|
2020-09-12 12:33:12 +02:00
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
$next_send_date = $this->nextDateByFrequency($next_send_date->format('Y-m-d'));
|
2020-09-13 12:20:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*If no due date is set - unset the due_date value */
|
2020-10-04 11:47:38 +02:00
|
|
|
// if(!$this->due_date_days || $this->due_date_days == 0){
|
2020-09-13 12:20:11 +02:00
|
|
|
|
2020-10-04 11:47:38 +02:00
|
|
|
// foreach($data as $key => $value)
|
|
|
|
// $data[$key]['due_date'] = '';
|
2020-09-13 12:20:11 +02:00
|
|
|
|
2020-10-04 11:47:38 +02:00
|
|
|
// }
|
2020-09-13 12:20:11 +02:00
|
|
|
|
|
|
|
return $data;
|
2020-07-01 13:33:42 +02:00
|
|
|
}
|
2020-09-12 12:33:12 +02:00
|
|
|
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
public function calculateDueDate($date)
|
2020-09-14 13:11:46 +02:00
|
|
|
{
|
2020-09-14 14:13:15 +02:00
|
|
|
switch ($this->due_date_days) {
|
|
|
|
case 'terms':
|
2020-09-14 13:11:46 +02:00
|
|
|
return $this->calculateDateFromTerms($date);
|
|
|
|
break;
|
|
|
|
default:
|
2020-09-14 14:13:15 +02:00
|
|
|
return $this->setDayOfMonth($date, $this->due_date_days);
|
2020-09-14 13:11:46 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculates a date based on the client payment terms.
|
2020-11-25 15:19:52 +01:00
|
|
|
*
|
2020-09-14 13:11:46 +02:00
|
|
|
* @param Carbon $date A given date
|
|
|
|
* @return NULL|Carbon The date
|
|
|
|
*/
|
2020-11-25 15:19:52 +01:00
|
|
|
public function calculateDateFromTerms($date)
|
2020-09-14 13:11:46 +02:00
|
|
|
{
|
2020-09-24 13:30:46 +02:00
|
|
|
$new_date = Carbon::parse($date);
|
2020-09-14 13:11:46 +02:00
|
|
|
|
|
|
|
$client_payment_terms = $this->client->getSetting('payment_terms');
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($client_payment_terms == '') {//no due date! return null;
|
2020-09-14 13:11:46 +02:00
|
|
|
return null;
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2020-09-14 13:11:46 +02:00
|
|
|
|
2020-09-24 13:30:46 +02:00
|
|
|
return $new_date->addDays($client_payment_terms); //add the number of days in the payment terms to the date
|
2020-09-14 13:11:46 +02:00
|
|
|
}
|
|
|
|
|
2020-09-24 02:57:44 +02:00
|
|
|
/**
|
|
|
|
* Service entry points.
|
|
|
|
*/
|
|
|
|
public function service() :RecurringService
|
|
|
|
{
|
|
|
|
return new RecurringService($this);
|
|
|
|
}
|
2019-04-23 14:22:13 +02:00
|
|
|
}
|