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

Merge branch 'dev-soluris' into 'develop'

[Actions de protection] Champ observations en textarea

See merge request !305
parents ac9b96ac 4bdfddc8
No related branches found
No related tags found
1 merge request!305[Actions de protection] Champ observations en textarea
Pipeline #90366 passed
......@@ -15,10 +15,6 @@ App\Domain\Registry\Model\Mesurement:
- Length:
max: 255
groups: ['default']
comment:
- Length:
max: 255
groups: ['default']
priority:
- Knp\DictionaryBundle\Validator\Constraints\Dictionary:
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
'class' => 'datepicker',
],
])
->add('comment', TextType::class, [
->add('comment', TextareaType::class, [
'label' => 'registry.mesurement.label.comment',
'required' => false,
'attr' => [
'maxlength' => 255,
'rows' => 3,
],
'purify_html' => true,
])
......
......@@ -72,7 +72,7 @@ class MesurementTypeTest extends FormTypeHelper
'charge' => TextType::class,
'status' => DictionaryType::class,
'planificationDate' => DateType::class,
'comment' => TextType::class,
'comment' => TextareaType::class,
'priority' => DictionaryType::class,
'manager' => TextType::class,
'service' => EntityType::class,
......@@ -102,7 +102,7 @@ class MesurementTypeTest extends FormTypeHelper
'charge' => TextType::class,
'status' => DictionaryType::class,
'planificationDate' => DateType::class,
'comment' => TextType::class,
'comment' => TextareaType::class,
'priority' => DictionaryType::class,
'manager' => TextType::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