mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 03:02:34 +01:00
74a6c4f2ee
* Performance improvements moving from str_replace to strtr * Remove legacy docs * Clean up credit transformer * Working on invoice emails * Clean up for invoice designs * Tests for light and dark theme emails * Working on reminder scheduling * Reminder Job Class * Fixes for github actions * PHP CS * Test for reminders * Test for reminders
32 lines
1.0 KiB
PHP
32 lines
1.0 KiB
PHP
<?php
|
|
|
|
use App\DataMapper\ClientSettings;
|
|
use App\DataMapper\CompanySettings;
|
|
use App\Factory\InvoiceItemFactory;
|
|
use Faker\Generator as Faker;
|
|
|
|
$factory->define(App\Models\Invoice::class, function (Faker $faker) {
|
|
return [
|
|
'status_id' => App\Models\Invoice::STATUS_SENT,
|
|
'number' => $faker->ean13(),
|
|
'discount' => $faker->numberBetween(1, 10),
|
|
'is_amount_discount' => (bool)random_int(0, 1),
|
|
'tax_name1' => 'GST',
|
|
'tax_rate1' => 10,
|
|
'tax_name2' => 'VAT',
|
|
'tax_rate2' => 17.5,
|
|
//'tax_name3' => 'THIRDTAX',
|
|
//'tax_rate3' => 5,
|
|
'custom_value1' => $faker->date,
|
|
'custom_value2' => rand(0, 1) ? 'yes' : 'no',
|
|
// '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' => InvoiceItemFactory::generate(5),
|
|
'terms' => $faker->text(500),
|
|
];
|
|
});
|