1.18 (#3158)
* bump version * fix translation ids * added css classes to modify form with custom css * improve export pdf file names * respect financial year in new report * added new InvoiceCalculator: price * upgrade packages and node-sass to v7 * title pattern for customer, project and activity via API * support negative money without currency * fix sub-locale in print export template * fix overbooking validation for monthly budget * fix copying entities with different set of custom-fields compared to the current configuration
This commit is contained in:
@@ -12,6 +12,7 @@ namespace App\Tests\Mocks;
|
||||
use App\Entity\ProjectMeta;
|
||||
use App\Event\ProjectMetaDefinitionEvent;
|
||||
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
|
||||
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Validator\Constraints\Length;
|
||||
|
||||
@@ -33,5 +34,12 @@ class ProjectTestMetaFieldSubscriberMock implements EventSubscriberInterface
|
||||
->setIsVisible(true);
|
||||
|
||||
$event->getEntity()->setMetaField($definition);
|
||||
|
||||
$definition = (new ProjectMeta())
|
||||
->setName('foobar')
|
||||
->setType(IntegerType::class)
|
||||
->setIsVisible(false);
|
||||
|
||||
$event->getEntity()->setMetaField($definition);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user