[#327] Afficher modifier une expédition terminée (!34)

| Numéro du ticket | Titre du ticket |
|------------------|-----------------|
|       #327           |       Afficher modifier une expédition terminée     |

## Description de la PR

## Modification du .env

## Check list

- [x] Pas de régression
- [ ] TU/TI/TF rédigée
- [x] TU/TI/TF OK
- [x] CHANGELOG modifié

Reviewed-on: https://gitea.malio.fr/MALIO-DEV/Ferme/pulls/34
Reviewed-by: Autin <tristan@yuno.malio.fr>
Co-authored-by: sroy <sebastien@yuno.malio.fr>
Co-committed-by: sroy <sebastien@yuno.malio.fr>
This commit is contained in:
sroy
2026-02-26 14:01:39 +00:00
committed by Autin
parent 47cac04257
commit 2b64f024b6
13 changed files with 670 additions and 16 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
:disabled="isLoading || isHydrating"
class="inline-flex items-center justify-center text-xl text-white uppercase bg-primary-500 h-[50px] px-8 rounded hover:opacity-80 gap-2"
>
<Icon :name="isEdit ? 'mdi:check' : 'mdi:plus'" size="28" />
<Icon :name="isEdit ? '' : 'mdi:plus'" size="28" />
{{ isEdit ? 'Valider' : 'Ajouter' }}
</UiButton>
</div>
-1
View File
@@ -10,7 +10,6 @@
type="submit"
class="inline-flex items-center justify-center text-xl text-white uppercase bg-primary-500 h-[50px] px-8 rounded hover:opacity-80 gap-2 justify-self-end"
>
<Icon name="mdi:check" size="28" />
Valider
</UiButton>
</div>
+1 -1
View File
@@ -10,7 +10,7 @@
type="submit"
:disabled="isLoading || !auth.isAdmin"
>
<Icon :name="customerId ? 'mdi:check' : 'mdi:plus'" size="28" />
<Icon :name="customerId ? '' : 'mdi:plus'" size="28" />
{{ customerId ? "Valider" : "Ajouter" }}
</UiButton>
</div>
+1 -1
View File
@@ -10,7 +10,7 @@
type="submit"
:disabled="isLoading || !auth.isAdmin"
>
<Icon :name="supplierId ? 'mdi:check' : 'mdi:plus'" size="28" />
<Icon :name="supplierId ? '' : 'mdi:plus'" size="28" />
{{ supplierId ? "Valider" : "Ajouter" }}
</UiButton>
</div>
+1 -1
View File
@@ -9,7 +9,7 @@
class="inline-flex items-center justify-center text-xl text-white uppercase bg-primary-500 h-[50px] px-8 rounded hover:opacity-80 gap-2"
type="submit"
>
<Icon :name="userId ? 'mdi:check' : 'mdi:plus'" size="28" />
<Icon :name="userId ? '' : 'mdi:plus'" size="28" />
{{ userId ? 'Valider' : 'Ajouter' }}
</UiButton>
</div>