This commit is contained in:
@@ -65,7 +65,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control
|
|||||||
//**************************************************************
|
//**************************************************************
|
||||||
//DEVELOPMENT MODE FLAG, SET FALSE FOR RELEASE
|
//DEVELOPMENT MODE FLAG, SET FALSE FOR RELEASE
|
||||||
//************************************************************
|
//************************************************************
|
||||||
const DEV_MODE = false;
|
const DEV_MODE = true;
|
||||||
//************************************************************
|
//************************************************************
|
||||||
//**************************************************************
|
//**************************************************************
|
||||||
//**************************************************************
|
//**************************************************************
|
||||||
|
|||||||
@@ -303,7 +303,7 @@ export default {
|
|||||||
methods: {
|
methods: {
|
||||||
purchaseLink() {
|
purchaseLink() {
|
||||||
return (
|
return (
|
||||||
"https://www.ayanova.com/purchase_AyaNova_online.htm?dbid=" +
|
"https://ayanova.com/r/pricing.htm?dbid=" +
|
||||||
window.$gz.store.state.globalSettings.serverDbId
|
window.$gz.store.state.globalSettings.serverDbId
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -601,7 +601,9 @@ export default {
|
|||||||
const vm = this;
|
const vm = this;
|
||||||
await processLogin(res.data, vm.loggedInWithKnownPassword);
|
await processLogin(res.data, vm.loggedInWithKnownPassword);
|
||||||
//check if support and updates has expired and is paid for license and show warning if so
|
//check if support and updates has expired and is paid for license and show warning if so
|
||||||
|
//but not to customer logins, that's just shaming and will anger people
|
||||||
if (
|
if (
|
||||||
|
!vm.$store.getters.isCustomerUser &&
|
||||||
vm.$store.state.globalSettings.maintenanceExpired &&
|
vm.$store.state.globalSettings.maintenanceExpired &&
|
||||||
(vm.$store.state.globalSettings.licenseStatus == 3 ||
|
(vm.$store.state.globalSettings.licenseStatus == 3 ||
|
||||||
vm.$store.state.globalSettings.licenseStatus == 4)
|
vm.$store.state.globalSettings.licenseStatus == 4)
|
||||||
@@ -611,7 +613,7 @@ export default {
|
|||||||
"MaintenanceExpiredNote",
|
"MaintenanceExpiredNote",
|
||||||
"MaintenanceExpired",
|
"MaintenanceExpired",
|
||||||
"error",
|
"error",
|
||||||
"https://www.ayanova.com/subscriptionexpired.htm"
|
"https://ayanova.com/docs/adm-license/#maintenance-expired-message"
|
||||||
);
|
);
|
||||||
})();
|
})();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user