Skip to content
Snippets Groups Projects
Commit 4bdfddc8 authored by Théo Boyer's avatar Théo Boyer
Browse files

[Actions de protection] Champ observations en textarea

parent ac9b96ac
No related branches found
No related tags found
1 merge request!305[Actions de protection] Champ observations en textarea
...@@ -15,10 +15,6 @@ App\Domain\Registry\Model\Mesurement: ...@@ -15,10 +15,6 @@ App\Domain\Registry\Model\Mesurement:
- Length: - Length:
max: 255 max: 255
groups: ['default'] groups: ['default']
comment:
- Length:
max: 255
groups: ['default']
priority: priority:
- Knp\DictionaryBundle\Validator\Constraints\Dictionary: - Knp\DictionaryBundle\Validator\Constraints\Dictionary:
name: 'registry_mesurement_priority' name: 'registry_mesurement_priority'
......
<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20250211143000 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('ALTER TABLE registry_mesurement CHANGE comment comment LONGTEXT DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->abortIf('mysql' !== $this->connection->getDatabasePlatform()->getName(), 'Migration can only be executed safely on \'mysql\'.');
$this->addSql('ALTER TABLE registry_mesurement CHANGE comment comment VARCHAR(255) DEFAULT NULL');
}
}
...@@ -133,11 +133,11 @@ class MesurementType extends LinkableType ...@@ -133,11 +133,11 @@ class MesurementType extends LinkableType
'class' => 'datepicker', 'class' => 'datepicker',
], ],
]) ])
->add('comment', TextType::class, [ ->add('comment', TextareaType::class, [
'label' => 'registry.mesurement.label.comment', 'label' => 'registry.mesurement.label.comment',
'required' => false, 'required' => false,
'attr' => [ 'attr' => [
'maxlength' => 255, 'rows' => 3,
], ],
'purify_html' => true, 'purify_html' => true,
]) ])
......
...@@ -72,7 +72,7 @@ class MesurementTypeTest extends FormTypeHelper ...@@ -72,7 +72,7 @@ class MesurementTypeTest extends FormTypeHelper
'charge' => TextType::class, 'charge' => TextType::class,
'status' => DictionaryType::class, 'status' => DictionaryType::class,
'planificationDate' => DateType::class, 'planificationDate' => DateType::class,
'comment' => TextType::class, 'comment' => TextareaType::class,
'priority' => DictionaryType::class, 'priority' => DictionaryType::class,
'manager' => TextType::class, 'manager' => TextType::class,
'service' => EntityType::class, 'service' => EntityType::class,
...@@ -102,7 +102,7 @@ class MesurementTypeTest extends FormTypeHelper ...@@ -102,7 +102,7 @@ class MesurementTypeTest extends FormTypeHelper
'charge' => TextType::class, 'charge' => TextType::class,
'status' => DictionaryType::class, 'status' => DictionaryType::class,
'planificationDate' => DateType::class, 'planificationDate' => DateType::class,
'comment' => TextType::class, 'comment' => TextareaType::class,
'priority' => DictionaryType::class, 'priority' => DictionaryType::class,
'manager' => TextType::class, 'manager' => TextType::class,
'mesurements' => EntityType::class, 'mesurements' => EntityType::class,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment