2019-05-03 00:29:04 +02:00
|
|
|
<?php
|
2020-10-01 07:33:38 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
|
|
|
namespace Database\Factories;
|
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
|
|
|
|
use App\DataMapper\ClientSettings;
|
|
|
|
use App\DataMapper\CompanySettings;
|
|
|
|
use Faker\Generator as Faker;
|
|
|
|
|
|
|
|
$factory->define(App\Models\RecurringInvoice::class, function (Faker $faker) {
|
|
|
|
return [
|
2020-03-21 06:37:30 +01:00
|
|
|
'status_id' => App\Models\RecurringInvoice::STATUS_ACTIVE,
|
|
|
|
'discount' => $faker->numberBetween(1, 10),
|
|
|
|
'is_amount_discount' => $faker->boolean(),
|
|
|
|
'tax_name1' => 'GST',
|
|
|
|
'tax_rate1' => 10,
|
|
|
|
'tax_name2' => 'VAT',
|
|
|
|
'tax_rate2' => 17.5,
|
|
|
|
'tax_name3' => 'THIRDTAX',
|
|
|
|
'tax_rate3' => 5,
|
|
|
|
'custom_value1' => $faker->numberBetween(1, 4),
|
|
|
|
'custom_value2' => $faker->numberBetween(1, 4),
|
|
|
|
'custom_value3' => $faker->numberBetween(1, 4),
|
|
|
|
'custom_value4' => $faker->numberBetween(1, 4),
|
|
|
|
'is_deleted' => false,
|
|
|
|
'po_number' => $faker->text(10),
|
|
|
|
'date' => $faker->date(),
|
|
|
|
'due_date' => $faker->date(),
|
|
|
|
'line_items' => false,
|
|
|
|
'frequency_id' => App\Models\RecurringInvoice::FREQUENCY_MONTHLY,
|
2020-09-13 12:20:11 +02:00
|
|
|
'last_sent_date' => now()->subMonth(),
|
|
|
|
'next_send_date' => now()->addMonthNoOverflow(),
|
2020-03-21 06:37:30 +01:00
|
|
|
'remaining_cycles' => $faker->numberBetween(1, 10),
|
2020-09-06 11:38:10 +02:00
|
|
|
'amount' => $faker->randomFloat(2, $min = 1, $max = 1000), // 48.8932
|
2019-08-15 13:10:02 +02:00
|
|
|
|
2019-05-03 00:29:04 +02:00
|
|
|
];
|
2020-03-21 06:37:30 +01:00
|
|
|
});
|