59 lines
1.8 KiB
PHP
59 lines
1.8 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\Form\Toolbar;
|
|
|
|
use App\Form\Type\InvoiceTemplateType;
|
|
use App\Form\Type\MarkAsExportedType;
|
|
use App\Repository\Query\InvoiceQuery;
|
|
use Symfony\Component\Form\FormBuilderInterface;
|
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
|
|
|
/**
|
|
* Defines the form used for filtering timesheet entries for invoices.
|
|
*/
|
|
class InvoiceToolbarSimpleForm extends AbstractToolbarForm
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function buildForm(FormBuilderInterface $builder, array $options)
|
|
{
|
|
$this->addTemplateChoice($builder);
|
|
$this->addDateRange($builder, ['timezone' => $options['timezone']]);
|
|
$this->addCustomerMultiChoice($builder, ['required' => false, 'start_date_param' => null, 'end_date_param' => null, 'ignore_date' => true, 'placeholder' => ''], true);
|
|
$this->addProjectMultiChoice($builder, ['ignore_date' => true], true, true);
|
|
if ($options['include_export']) {
|
|
$builder->add('markAsExported', MarkAsExportedType::class);
|
|
}
|
|
}
|
|
|
|
protected function addTemplateChoice(FormBuilderInterface $builder)
|
|
{
|
|
$builder->add('template', InvoiceTemplateType::class, [
|
|
'required' => true,
|
|
'placeholder' => null,
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function configureOptions(OptionsResolver $resolver)
|
|
{
|
|
$resolver->setDefaults([
|
|
'data_class' => InvoiceQuery::class,
|
|
'csrf_protection' => false,
|
|
'include_user' => true,
|
|
'include_export' => true,
|
|
'timezone' => date_default_timezone_get(),
|
|
]);
|
|
}
|
|
}
|