diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8974e33..561671b 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,13 +4,13 @@ - @@ -792,7 +791,8 @@ - @@ -811,11 +811,6 @@ file://$PROJECT_DIR$/frontend/services/dto/shipment-data.ts diff --git a/frontend/layouts/default.vue b/frontend/layouts/default.vue index 40edd7b..d0df6cf 100644 --- a/frontend/layouts/default.vue +++ b/frontend/layouts/default.vue @@ -38,6 +38,23 @@ + + + Utilisateurs + + + - - - Utilisateurs - - - diff --git a/src/Command/SeedCommand.php b/src/Command/SeedCommand.php index c83c6eb..bb64d7c 100644 --- a/src/Command/SeedCommand.php +++ b/src/Command/SeedCommand.php @@ -216,6 +216,7 @@ class SeedCommand extends Command ['label' => 'Bâtiment 1', 'code' => 'B1'], ['label' => 'Bâtiment 2', 'code' => 'B2'], ['label' => 'Bâtiment 3', 'code' => 'B3'], + ['label' => 'Zone tampon', 'code' => 'ZT'], ]; foreach ($buildings as $buildingData) { $this->upsertByCode(Building::class, $buildingData['code'], static function (Building $entity) use ($buildingData) { diff --git a/src/DataFixtures/ReferenceFixtures.php b/src/DataFixtures/ReferenceFixtures.php index 556cacb..f6cbb15 100644 --- a/src/DataFixtures/ReferenceFixtures.php +++ b/src/DataFixtures/ReferenceFixtures.php @@ -54,6 +54,7 @@ class ReferenceFixtures extends Fixture ['label' => 'Bâtiment 1', 'code' => 'B1'], ['label' => 'Bâtiment 2', 'code' => 'B2'], ['label' => 'Bâtiment 3', 'code' => 'B3'], + ['label' => 'Zone tampon', 'code' => 'ZT'], ]; foreach ($buildings as $buildingData) { $building = new Building()