Skip to content

Commit

Permalink
ITEM-425 archivage
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelQuetin committed Dec 5, 2024
1 parent 5af2751 commit 3595fbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/Suppression/SuppTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -349,11 +349,11 @@ function isAvailableFile(demandeNumber, filename) {
//Action d'archivage ou suppression selon état de la demande dans le TDB
function canArchive(item) {
return item.etatDemande === 'Terminé';
return item.etatDemande === 'Terminé' || item.etatDemande === 'Interrompue';
}
function canCancel(item) {
return item.etatDemande !== 'Terminé' && item.etatDemande !== 'En cours de traitement' && item.etatDemande !== 'En attente';
return item.etatDemande !== 'Terminé' && item.etatDemande !== 'En cours de traitement' && item.etatDemande !== 'En attente' && item.etatDemande !== 'Interrompue';
}
function canStop(item) {
Expand Down

0 comments on commit 3595fbb

Please sign in to comment.