62 lines
1.7 KiB
PHP
62 lines
1.7 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\InvoiceTemplate;
|
|
use Doctrine\Bundle\FixturesBundle\Fixture;
|
|
use Doctrine\Common\Persistence\ObjectManager;
|
|
use Faker\Factory;
|
|
|
|
/**
|
|
* Defines the sample data to load in during controller tests.
|
|
*/
|
|
class InvoiceFixtures extends Fixture
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function load(ObjectManager $manager)
|
|
{
|
|
$this->loadInvoiceTemplates($manager);
|
|
}
|
|
|
|
/**
|
|
* @param ObjectManager $manager
|
|
*/
|
|
private function loadInvoiceTemplates(ObjectManager $manager)
|
|
{
|
|
$faker = Factory::create();
|
|
|
|
$template = new InvoiceTemplate();
|
|
$template
|
|
->setName('Invoice')
|
|
->setTitle('Your company name')
|
|
->setCompany($faker->company)
|
|
->setVat(19)
|
|
->setDueDays(14)
|
|
->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.'
|
|
)
|
|
->setAddress(
|
|
$faker->streetAddress . PHP_EOL .
|
|
$faker->city . ', ' . $faker->stateAbbr . ' ' . $faker->postcode . PHP_EOL .
|
|
'Phone: ' . $faker->phoneNumber . PHP_EOL .
|
|
'Email: ' . $faker->safeEmail
|
|
)
|
|
;
|
|
|
|
$manager->persist($template);
|
|
$manager->flush();
|
|
}
|
|
}
|