Added API endpoints to fetch invoices (#5070)

* added serializer attributes for API usage
* new setters to fill invoice data from fixture
* re-usable fixture helper methods
* added API endpoints to fetch invoices
* adjust tests
This commit is contained in:
Kevin Papst
2024-09-22 16:17:45 +02:00
committed by GitHub
parent 1965c35b43
commit 8de54e1fa7
20 changed files with 532 additions and 155 deletions

View File

@@ -0,0 +1,76 @@
<?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\Invoice;
use Doctrine\Persistence\ObjectManager;
use Faker\Factory;
/**
* Defines the sample data to load in during controller tests.
*/
class InvoiceFixtures implements TestFixture
{
use FixturesTrait;
private int $amount = 50;
private array $status = [Invoice::STATUS_CANCELED, Invoice::STATUS_NEW, Invoice::STATUS_PAID, Invoice::STATUS_PENDING];
public function setAmount(int $amount = 50): void
{
$this->amount = $amount;
}
public function setStatus(array $status): void
{
$this->status = $status;
}
/**
* @return Invoice[]
*/
public function load(ObjectManager $manager): array
{
$created = [];
$faker = Factory::create();
$customers = $this->getAllCustomers($manager);
$users = $this->getAllUsers($manager);
for ($i = 0; $i < $this->amount; $i++) {
$total = $faker->randomFloat(2, 50, 5000);
$vat = $faker->randomFloat(2, 0, 23) / 10;
$tax = $total * $vat;
$invoice = new Invoice();
$invoice->setStatus($this->status[array_rand($this->status)]);
$invoice->setTotal($total);
$invoice->setVat($vat);
$invoice->setTax($tax);
$invoice->setCustomer($customers[array_rand($customers)]);
$invoice->setInvoiceNumber($i . '_ ' . $faker->text(10));
$invoice->setCreatedAt($faker->dateTimeBetween('-1 year', 'now'));
$invoice->setUser($users[array_rand($users)]);
$invoice->setDueDays($faker->randomNumber(2));
$invoice->setFilename($faker->text(30));
$invoice->setComment($faker->text(300));
$invoice->setCurrency($faker->currencyCode());
$manager->persist($invoice);
$created[] = $invoice;
}
$manager->flush();
return $created;
}
}