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\Factory;
|
|
|
|
|
|
|
|
use App\Models\RecurringQuote;
|
|
|
|
|
|
|
|
class RecurringQuoteFactory
|
|
|
|
{
|
2024-01-14 05:05:00 +01:00
|
|
|
public static function create(int $company_id, int $user_id): RecurringQuote
|
2019-12-30 22:59:12 +01:00
|
|
|
{
|
|
|
|
$quote = new RecurringQuote();
|
|
|
|
$quote->status_id = RecurringQuote::STATUS_DRAFT;
|
|
|
|
$quote->discount = 0;
|
|
|
|
$quote->is_amount_discount = true;
|
|
|
|
$quote->po_number = '';
|
2021-08-24 07:05:35 +02:00
|
|
|
$quote->number = '';
|
2019-12-30 22:59:12 +01:00
|
|
|
$quote->footer = '';
|
|
|
|
$quote->terms = '';
|
|
|
|
$quote->public_notes = '';
|
|
|
|
$quote->private_notes = '';
|
|
|
|
$quote->date = null;
|
|
|
|
$quote->due_date = null;
|
|
|
|
$quote->partial_due_date = null;
|
|
|
|
$quote->is_deleted = false;
|
|
|
|
$quote->line_items = json_encode([]);
|
|
|
|
$quote->tax_name1 = '';
|
|
|
|
$quote->tax_rate1 = 0;
|
|
|
|
$quote->tax_name2 = '';
|
|
|
|
$quote->tax_rate2 = 0;
|
2021-05-16 11:44:44 +02:00
|
|
|
$quote->custom_value1 = '';
|
|
|
|
$quote->custom_value2 = '';
|
|
|
|
$quote->custom_value3 = '';
|
|
|
|
$quote->custom_value4 = '';
|
2019-12-30 22:59:12 +01:00
|
|
|
$quote->amount = 0;
|
|
|
|
$quote->balance = 0;
|
|
|
|
$quote->partial = 0;
|
|
|
|
$quote->user_id = $user_id;
|
|
|
|
$quote->company_id = $company_id;
|
|
|
|
$quote->frequency_id = RecurringQuote::FREQUENCY_MONTHLY;
|
|
|
|
$quote->last_sent_date = null;
|
|
|
|
$quote->next_send_date = null;
|
|
|
|
$quote->remaining_cycles = 0;
|
2021-08-24 07:05:35 +02:00
|
|
|
$quote->paid_to_date = 0;
|
2019-05-05 02:49:01 +02:00
|
|
|
|
2019-12-30 22:59:12 +01:00
|
|
|
return $quote;
|
|
|
|
}
|
2019-05-05 02:49:01 +02:00
|
|
|
}
|