Skip to content

Commit

Permalink
Merge pull request #720 from bcgov/GRAD2-3068
Browse files Browse the repository at this point in the history
Added tooltip for user batch dist run header
  • Loading branch information
suzalflueck authored Jan 20, 2025
2 parents 8a636c8 + 88f1411 commit 5b75e9a
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions frontend/src/views/BatchProcessing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,17 @@
:sortBy="[{ key: 'displayOrder', order: 'asc' }]"
class="pb-3"
>
<template v-slot:item.description="{ item }">
{{ item.description }}
<v-tooltip max-width="800">
{{ userBatchDistRuleDesc }}
<template v-slot:activator="{ props }">
<v-icon v-bind="props" color="bcGovBlue" small size="18"
>mdi-information</v-icon
>
</template>
</v-tooltip>
</template>
</v-data-table>
<v-table>
<tbody>
Expand Down Expand Up @@ -392,6 +403,10 @@ export default {
distributionBatchRunOptions: [],
PSIBatchRunOptions: [],
yearEndBatchRunOptions: [],
userBatchDistRuleDesc: `If Current Students selected and the User has requested Transcripts, all students with a status of CUR will be selected by school at graduation. \n
If Current Students selected and the User has requested Original Certificate or Reprint Certificate, all students, except 'DEC','MER', with a certificate with a null distribution date will be selected by school at graduation. \n
If Date Range selected, and the User has requested Transcript print, all students, except 'DEC', 'MER', who have completed their program within the date range will be selected by school at graduation. \n
If Date Range selected, and the User has requested Original Certificate or Reprint Certificate, all students, except 'DEC','MER', who have completed their program within the date range will be selected by school of graduation.`
};
},
created() {
Expand Down

0 comments on commit 5b75e9a

Please sign in to comment.