Skip to content

Commit

Permalink
ITEM-289 changer le libeller
Browse files Browse the repository at this point in the history
  • Loading branch information
SamuelQuetin committed Nov 4, 2024
1 parent d44e92f commit 1a85579
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/views/Exemplarisation/ExempTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@
<v-chip color="error" variant="flat" v-else-if="item.etatDemande === 'En erreur'">En erreur</v-chip>
</td>
<td @click="onRowClick(item)" class="text-center">
<v-progress-linear v-model="item.pourcentageProgressionTraitement" :height="18" :striped="false"
color="grey-lighten-1" style="border: 1px solid grey; font-weight: bolder">
<v-progress-linear v-model="item.pourcentageProgressionTraitement" height="18"
:color="item.pourcentageProgressionTraitement === 100 ? 'success' : 'grey-lighten-1'" style="border: 1px solid grey; font-weight: bolder">
{{ item.pourcentageProgressionTraitement }} %
</v-progress-linear>
</td>
Expand Down Expand Up @@ -144,7 +144,7 @@ const headingsDemandes = [
align: 'center'
},
{
title: 'Demande',
title: 'N° de Demande',
key: 'id',
align: 'center'
},
Expand Down
4 changes: 2 additions & 2 deletions src/views/Modification/ModifTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
</td>
<td @click="onRowClick(item)" class="text-center">
<v-progress-linear v-model="item.pourcentageProgressionTraitement" height="18"
color="grey-lighten-1" style="border: 1px solid grey; font-weight: bolder">
:color="item.pourcentageProgressionTraitement === 100 ? 'success' : 'grey-lighten-1'" style="border: 1px solid grey; font-weight: bolder">
{{ item.pourcentageProgressionTraitement }} %
</v-progress-linear>
</td>
Expand Down Expand Up @@ -143,7 +143,7 @@ const headingsDemandes = ref([
align: 'center'
},
{
title: 'Demande',
title: 'N° de Demande',
key: 'id',
align: 'center'
},
Expand Down
2 changes: 1 addition & 1 deletion src/views/Recouvrement/RecouvTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ const headingsDemandes = ref([
align: 'center'
},
{
title: 'Demande',
title: 'N° de Demande',
key: 'id',
align: 'center'
},
Expand Down
6 changes: 3 additions & 3 deletions src/views/Suppression/SuppTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Suppression d'exemplaires
</v-chip>
<v-chip :variant="!isArchiveDemandesDisplayed ? 'plain' : 'tonal'" @click="switchArchiveActiveDisplay(!isArchiveDemandesDisplayed)">
Suppression d'exemplaires archivées
Demandes archivées
</v-chip>
<v-chip variant="text">
<v-tooltip activator="parent" location="bottom">
Expand Down Expand Up @@ -88,7 +88,7 @@
</td>
<td @click="onRowClick(item)" class="text-center">
<v-progress-linear v-model="item.pourcentageProgressionTraitement" height="18"
color="grey-lighten-1" style="border: 1px solid grey; font-weight: bolder">
:color="item.pourcentageProgressionTraitement === 100 ? 'success' : 'grey-lighten-1'" style="border: 1px solid grey; font-weight: bolder">
{{ item.pourcentageProgressionTraitement }} %
</v-progress-linear>
</td>
Expand Down Expand Up @@ -128,7 +128,7 @@ const headingsDemandes = ref([
align: 'center'
},
{
title: 'Demande',
title: 'N° de Demande',
key: 'id',
align: 'center'
},
Expand Down

0 comments on commit 1a85579

Please sign in to comment.