From be29daf4d12ff6ed69e9078c5065e04590efce57 Mon Sep 17 00:00:00 2001 From: tristan Date: Mon, 16 Feb 2026 16:26:00 +0100 Subject: [PATCH] fix : corrections de tous les retours + modification de la seed et fixtures --- frontend/components/card-link.vue | 9 ++--- .../reception/reception-bovine-received.vue | 2 +- .../components/reception/reception-form.vue | 34 ++++++++-------- .../reception/reception-product-received.vue | 4 +- .../components/reception/reception-weight.vue | 18 ++++----- .../components/reception/update-bovin.vue | 4 +- .../reception/update-merchandise.vue | 4 +- .../components/reception/update-weight.vue | 4 +- .../components/shipment/shipment-form.vue | 38 +++++++++--------- .../components/shipment/shipment-loading.vue | 8 ++-- .../components/shipment/shipment-weight.vue | 16 ++++---- frontend/components/ui/UiButton.vue | 39 +++++++++++++++++++ frontend/components/ui/UiCheckbox.vue | 4 +- frontend/components/ui/UiDateInput.vue | 4 +- frontend/components/ui/UiNumberInput.vue | 4 +- frontend/components/ui/UiRadioGroup.vue | 4 +- frontend/components/ui/UiSelect.vue | 4 +- frontend/components/ui/UiTextInput.vue | 4 +- .../components/ui/license-plate-input.vue | 4 +- frontend/components/ui/stepper.vue | 2 +- frontend/layouts/default.vue | 37 ++++++------------ frontend/pages/admin/carrier/[[id]].vue | 24 ++++++++---- frontend/pages/admin/carrier/carrier-list.vue | 8 ++-- frontend/pages/admin/customer/[[id]].vue | 8 ++-- .../pages/admin/customer/customer-list.vue | 5 ++- frontend/pages/admin/supplier/[[id]].vue | 8 ++-- .../pages/admin/supplier/supplier-list.vue | 5 ++- frontend/pages/admin/user/[[id]].vue | 6 +-- frontend/pages/admin/user/list.vue | 5 ++- frontend/pages/index.vue | 20 ++++++++-- frontend/pages/login.vue | 4 +- frontend/pages/reception/[[id]].vue | 6 +-- frontend/pages/reception/finish-reception.vue | 20 ++++++---- frontend/pages/reception/update/[[id]].vue | 4 +- .../pages/reception/waiting-reception.vue | 8 ++-- frontend/pages/shipment/[[id]].vue | 6 +-- frontend/pages/shipment/finish-shipment.vue | 19 +++++---- frontend/pages/shipment/waiting-shipment.vue | 6 +-- frontend/tailwind.config.ts | 11 +----- src/Command/SeedCommand.php | 22 +++++------ src/DataFixtures/ReferenceFixtures.php | 18 ++++----- 41 files changed, 253 insertions(+), 207 deletions(-) create mode 100644 frontend/components/ui/UiButton.vue diff --git a/frontend/components/card-link.vue b/frontend/components/card-link.vue index cf6a953..0c490a7 100644 --- a/frontend/components/card-link.vue +++ b/frontend/components/card-link.vue @@ -2,7 +2,7 @@ - diff --git a/frontend/components/reception/reception-bovine-received.vue b/frontend/components/reception/reception-bovine-received.vue index 9612bca..45bae0b 100644 --- a/frontend/components/reception/reception-bovine-received.vue +++ b/frontend/components/reception/reception-bovine-received.vue @@ -2,7 +2,7 @@
-

Sélection des races réceptionnées

+

Sélection des races réceptionnées

-

Réception

+

Réception

- - -
+
+ +
- +
diff --git a/frontend/components/reception/reception-product-received.vue b/frontend/components/reception/reception-product-received.vue index 5808ccb..2deca6c 100644 --- a/frontend/components/reception/reception-product-received.vue +++ b/frontend/components/reception/reception-product-received.vue @@ -3,7 +3,7 @@
-

Sélection des marchandises réceptionnnées

+

Sélection des marchandises réceptionnnées

-

{{ type.label }}

+

{{ type.label }}

-

{{ title }}

+

{{ title }}

-

Pont-bascule connecté

+

Pont-bascule connecté

@@ -11,27 +11,27 @@
+ class="w-full flex flex-col items-center justify-center border border-black h-[90px] mt-12 mb-[25px] text-4xl text-primary-500"> {{ displayWeight }} kg
- - - + >Générer le bon
diff --git a/frontend/components/reception/update-bovin.vue b/frontend/components/reception/update-bovin.vue index 90ae35c..f8f827b 100644 --- a/frontend/components/reception/update-bovin.vue +++ b/frontend/components/reception/update-bovin.vue @@ -27,12 +27,12 @@ />
- +
diff --git a/frontend/components/reception/update-merchandise.vue b/frontend/components/reception/update-merchandise.vue index b471192..cb09c09 100644 --- a/frontend/components/reception/update-merchandise.vue +++ b/frontend/components/reception/update-merchandise.vue @@ -67,13 +67,13 @@
- +
diff --git a/frontend/components/reception/update-weight.vue b/frontend/components/reception/update-weight.vue index 182f390..e5ec053 100644 --- a/frontend/components/reception/update-weight.vue +++ b/frontend/components/reception/update-weight.vue @@ -30,14 +30,14 @@
- +
diff --git a/frontend/components/shipment/shipment-form.vue b/frontend/components/shipment/shipment-form.vue index 1075247..0700b9d 100644 --- a/frontend/components/shipment/shipment-form.vue +++ b/frontend/components/shipment/shipment-form.vue @@ -1,7 +1,7 @@ diff --git a/frontend/components/shipment/shipment-loading.vue b/frontend/components/shipment/shipment-loading.vue index c685a4c..802e1b7 100644 --- a/frontend/components/shipment/shipment-loading.vue +++ b/frontend/components/shipment/shipment-loading.vue @@ -1,14 +1,14 @@ diff --git a/frontend/components/shipment/shipment-weight.vue b/frontend/components/shipment/shipment-weight.vue index cf4d7f0..0876f79 100644 --- a/frontend/components/shipment/shipment-weight.vue +++ b/frontend/components/shipment/shipment-weight.vue @@ -1,7 +1,7 @@ diff --git a/frontend/components/ui/UiButton.vue b/frontend/components/ui/UiButton.vue new file mode 100644 index 0000000..429e00e --- /dev/null +++ b/frontend/components/ui/UiButton.vue @@ -0,0 +1,39 @@ + + + diff --git a/frontend/components/ui/UiCheckbox.vue b/frontend/components/ui/UiCheckbox.vue index 9355ab5..39770b0 100644 --- a/frontend/components/ui/UiCheckbox.vue +++ b/frontend/components/ui/UiCheckbox.vue @@ -1,14 +1,14 @@