case 4522

This commit is contained in:
2023-05-04 00:49:19 +00:00
parent e3e4e3fcde
commit a2abf3b0f0
2 changed files with 14 additions and 1 deletions

View File

@@ -289,7 +289,8 @@ export default {
"RenderingReport", "RenderingReport",
"Settings", "Settings",
"IntegrationList", "IntegrationList",
"ServerUpdateAvailable" "ServerUpdateAvailable",
"LicenseExpirationDays"
], ],
//////////////////////////////////////////////////////// ////////////////////////////////////////////////////////

View File

@@ -642,6 +642,18 @@ export default {
); );
} }
//Show license expiration period days left (if it's set to willexpire)
if (vm.$store.state.globalSettings.licenseExpirationDays > -1) {
window.$gz.eventBus.$emit(
"notify-info",
`${vm.$ay.t("LicenseExpirationDays")}: ${
vm.$store.state.globalSettings.licenseExpirationDays
}`,
null,
5000
);
}
const toPath = vm.$route.params.topath; //set in app.vue::mounted const toPath = vm.$route.params.topath; //set in app.vue::mounted
if (toPath != undefined) { if (toPath != undefined) {
//open the url indicated //open the url indicated