mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 03:37:31 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			210 lines
		
	
	
		
			9.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			210 lines
		
	
	
		
			9.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://www.elastic.co/licensing/elastic-license
 | |
|  */
 | |
| 
 | |
| namespace App\Services\Invoice;
 | |
| 
 | |
| use App\Models\Invoice;
 | |
| use App\Models\RecurringInvoice;
 | |
| use App\Services\AbstractService;
 | |
| use Carbon\Carbon;
 | |
| 
 | |
| class UpdateReminder extends AbstractService
 | |
| {
 | |
|     public function __construct(public Invoice $invoice, public mixed $settings = null)
 | |
|     {
 | |
|     }
 | |
| 
 | |
|     /* We only support setting reminders based on the due date, not the partial due date */
 | |
|     public function run()
 | |
|     {
 | |
|         if (! $this->settings) {
 | |
|             $this->settings = $this->invoice->client->getMergedSettings();
 | |
|         }
 | |
| 
 | |
|         if (! $this->invoice->isPayable() || $this->invoice->status_id == Invoice::STATUS_DRAFT) {
 | |
|             $this->invoice->next_send_date = null;
 | |
|             $this->invoice->saveQuietly();
 | |
| 
 | |
|             return $this->invoice; //exit early
 | |
|         }
 | |
| 
 | |
|         if ($this->invoice->next_send_date) {
 | |
|             $this->invoice->next_send_date = null;
 | |
|         }
 | |
| 
 | |
|         $offset = $this->invoice->client->timezone_offset();
 | |
| 
 | |
|         $date_collection = collect();
 | |
| 
 | |
|         if (is_null($this->invoice->reminder1_sent) &&
 | |
|             $this->settings->schedule_reminder1 == 'after_invoice_date') {
 | |
|             $reminder_date = Carbon::parse($this->invoice->date)->startOfDay()->addDays($this->settings->num_days_reminder1);
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder1_sent) &&
 | |
|             ($this->invoice->partial_due_date || $this->invoice->due_date) &&
 | |
|             $this->settings->schedule_reminder1 == 'before_due_date') {
 | |
|             $partial_or_due_date = ($this->invoice->partial > 0 && isset($this->invoice->partial_due_date)) ? $this->invoice->partial_due_date : $this->invoice->due_date;
 | |
|             $reminder_date = Carbon::parse($partial_or_due_date)->startOfDay()->subDays($this->settings->num_days_reminder1);
 | |
|             // nlog("1. {$reminder_date->format('Y-m-d')}");
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder1_sent) &&
 | |
|             ($this->invoice->partial_due_date || $this->invoice->due_date) &&
 | |
|             $this->settings->schedule_reminder1 == 'after_due_date') {
 | |
| 
 | |
|             $partial_or_due_date = ($this->invoice->partial > 0 && isset($this->invoice->partial_due_date)) ? $this->invoice->partial_due_date : $this->invoice->due_date;
 | |
|             $reminder_date = Carbon::parse($partial_or_due_date)->startOfDay()->addDays($this->settings->num_days_reminder1);
 | |
|             // nlog("2. {$reminder_date->format('Y-m-d')}");
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder2_sent) &&
 | |
|             $this->settings->schedule_reminder2 == 'after_invoice_date') {
 | |
|             $reminder_date = Carbon::parse($this->invoice->date)->startOfDay()->addDays($this->settings->num_days_reminder2);
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder2_sent) &&
 | |
|             ($this->invoice->partial_due_date || $this->invoice->due_date) &&
 | |
|             $this->settings->schedule_reminder2 == 'before_due_date') {
 | |
| 
 | |
|             $partial_or_due_date = ($this->invoice->partial > 0 && isset($this->invoice->partial_due_date)) ? $this->invoice->partial_due_date : $this->invoice->due_date;
 | |
|             $reminder_date = Carbon::parse($partial_or_due_date)->startOfDay()->subDays($this->settings->num_days_reminder2);
 | |
|             // nlog("3. {$reminder_date->format('Y-m-d')}");
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder2_sent) &&
 | |
|             ($this->invoice->partial_due_date || $this->invoice->due_date) &&
 | |
|             $this->settings->schedule_reminder2 == 'after_due_date') {
 | |
| 
 | |
|             $partial_or_due_date = ($this->invoice->partial > 0 && isset($this->invoice->partial_due_date)) ? $this->invoice->partial_due_date : $this->invoice->due_date;
 | |
|             $reminder_date = Carbon::parse($partial_or_due_date)->startOfDay()->addDays($this->settings->num_days_reminder2);
 | |
|             // nlog("4. {$reminder_date->format('Y-m-d')}");
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder3_sent) &&
 | |
|             $this->settings->schedule_reminder3 == 'after_invoice_date') {
 | |
|             $reminder_date = Carbon::parse($this->invoice->date)->startOfDay()->addDays($this->settings->num_days_reminder3);
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder3_sent) &&
 | |
|             ($this->invoice->partial_due_date || $this->invoice->due_date) &&
 | |
|             $this->settings->schedule_reminder3 == 'before_due_date') {
 | |
| 
 | |
|             $partial_or_due_date = ($this->invoice->partial > 0 && isset($this->invoice->partial_due_date)) ? $this->invoice->partial_due_date : $this->invoice->due_date;
 | |
|             $reminder_date = Carbon::parse($partial_or_due_date)->startOfDay()->subDays($this->settings->num_days_reminder3);
 | |
|             // nlog("5. {$reminder_date->format('Y-m-d')}");
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if (is_null($this->invoice->reminder3_sent) &&
 | |
|             ($this->invoice->partial_due_date || $this->invoice->due_date) &&
 | |
|             $this->settings->schedule_reminder3 == 'after_due_date') {
 | |
| 
 | |
|             $partial_or_due_date = ($this->invoice->partial > 0 && isset($this->invoice->partial_due_date)) ? $this->invoice->partial_due_date : $this->invoice->due_date;
 | |
|             $reminder_date = Carbon::parse($partial_or_due_date)->startOfDay()->addDays($this->settings->num_days_reminder3);
 | |
|             // nlog("6. {$reminder_date->format('Y-m-d')}");
 | |
| 
 | |
|             if ($reminder_date->gt(now())) {
 | |
|                 $date_collection->push($reminder_date);
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if ($this->invoice->last_sent_date &&
 | |
|             $this->settings->enable_reminder_endless &&
 | |
|             ($this->invoice->reminder1_sent || $this->settings->schedule_reminder1 == "" || !$this->settings->enable_reminder1) &&
 | |
|             ($this->invoice->reminder2_sent || $this->settings->schedule_reminder2 == "" || !$this->settings->enable_reminder2) &&
 | |
|             ($this->invoice->reminder3_sent || $this->settings->schedule_reminder3 == "" || !$this->settings->enable_reminder3)) {
 | |
|             $reminder_date = $this->addTimeInterval($this->invoice->last_sent_date, (int) $this->settings->endless_reminder_frequency_id);
 | |
| 
 | |
|             if ($reminder_date) {
 | |
|                 if ($reminder_date->gt(now())) {
 | |
|                     $date_collection->push($reminder_date);
 | |
|                 }
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         if ($date_collection->count() >= 1 && $date_collection->sort()->first()->gte(now())) {
 | |
|             $this->invoice->next_send_date = $date_collection->sort()->first()->addSeconds($offset);
 | |
|         } else {
 | |
|             $this->invoice->next_send_date = null;
 | |
|         }
 | |
| 
 | |
|         return $this->invoice;
 | |
|     }
 | |
| 
 | |
|     private function addTimeInterval($date, $endless_reminder_frequency_id): ?Carbon
 | |
|     {
 | |
|         if (! $date) {
 | |
|             return null;
 | |
|         }
 | |
| 
 | |
|         switch ($endless_reminder_frequency_id) {
 | |
|             case RecurringInvoice::FREQUENCY_DAILY:
 | |
|                 return Carbon::parse($date)->addDay()->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_WEEKLY:
 | |
|                 return Carbon::parse($date)->addWeek()->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_TWO_WEEKS:
 | |
|                 return Carbon::parse($date)->addWeeks(2)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_FOUR_WEEKS:
 | |
|                 return Carbon::parse($date)->addWeeks(4)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_MONTHLY:
 | |
|                 return Carbon::parse($date)->addMonthNoOverflow()->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_TWO_MONTHS:
 | |
|                 return Carbon::parse($date)->addMonthsNoOverflow(2)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_THREE_MONTHS:
 | |
|                 return Carbon::parse($date)->addMonthsNoOverflow(3)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_FOUR_MONTHS:
 | |
|                 return Carbon::parse($date)->addMonthsNoOverflow(4)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_SIX_MONTHS:
 | |
|                 return Carbon::parse($date)->addMonthsNoOverflow(6)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_ANNUALLY:
 | |
|                 return Carbon::parse($date)->addYear()->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_TWO_YEARS:
 | |
|                 return Carbon::parse($date)->addYears(2)->startOfDay();
 | |
|             case RecurringInvoice::FREQUENCY_THREE_YEARS:
 | |
|                 return Carbon::parse($date)->addYears(3)->startOfDay();
 | |
|             default:
 | |
|                 return null;
 | |
|         }
 | |
|     }
 | |
| }
 |