* deactivate deprecated auto-mapping * use native month-picker with fallback on old browser * bump dependencies to new major versions * replace deprecated ARRAY column type with JSON * named arguments * nullable arguments * native lazy ghosts * update routes to use php config * disable PHP < 8.4 * use static RTL configuration * new qr code package * clear out env file * recipe updates * fix deprecations * preset new env variable if not existing * bump maria db version examples * remove deprecated api-token support * fix validator deprecations * remove timesheet category column * fix broken validator autoconfiguration * stabilize tests * fix migration syntax compatibility * fix doctrine deprecation * fix datetime format * remove constructor dependency * only include visible preferences in invoice templates * fix test container dependency * removed ProjectConstraint multi-constraint logic * allow to disable plugins in certain environments * refactor TimesheetConstraint to non-service * activate new interface methods * prevent update issues with .env * improved customer fixture * removed $user->isExportDecimal()
69 lines
2.0 KiB
PHP
69 lines
2.0 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Kimai time-tracking app.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace App\Tests\DataFixtures;
|
|
|
|
use App\Entity\Customer;
|
|
use App\Entity\InvoiceTemplate;
|
|
use Doctrine\Persistence\ObjectManager;
|
|
use Faker\Factory;
|
|
|
|
/**
|
|
* Defines the sample data to load in during controller tests.
|
|
*/
|
|
class InvoiceTemplateFixtures implements TestFixture
|
|
{
|
|
/**
|
|
* @return InvoiceTemplate[]
|
|
*/
|
|
public function load(ObjectManager $manager): array
|
|
{
|
|
$created = [];
|
|
|
|
$faker = Factory::create();
|
|
|
|
$customer = new Customer($faker->company());
|
|
$customer->setCountry($faker->countryCode());
|
|
$customer->setTimezone($faker->timezone());
|
|
$customer->setCompany('Company name');
|
|
$customer->setAddressLine1($faker->streetAddress());
|
|
$customer->setAddressLine2($faker->streetAddress());
|
|
$customer->setPostCode($faker->postcode());
|
|
$customer->setCity($faker->city());
|
|
|
|
$manager->persist($customer);
|
|
|
|
$template = new InvoiceTemplate();
|
|
$template->setName('Invoice');
|
|
$template->setTitle('Your company name');
|
|
$template->setCustomer($customer);
|
|
$template->setTaxRate(19.0);
|
|
$template->setDueDays(14);
|
|
$template->setPaymentTerms(
|
|
'I would like to thank you for your confidence and will gladly be there for you in the future.' .
|
|
PHP_EOL .
|
|
'Please transfer the total amount within 14 days to the given account and use the invoice number ' .
|
|
'as reference.'
|
|
);
|
|
$template->setContact(
|
|
'Phone: ' . $faker->phoneNumber() . PHP_EOL .
|
|
'Email: ' . $faker->safeEmail()
|
|
);
|
|
$template->setLanguage('en');
|
|
$template->setRenderer('invoice');
|
|
|
|
$manager->persist($template);
|
|
$manager->flush();
|
|
|
|
$created[] = $template;
|
|
|
|
return $created;
|
|
}
|
|
}
|