This commit is contained in:
@@ -197,6 +197,19 @@
|
|||||||
></v-checkbox>
|
></v-checkbox>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-checkbox
|
||||||
|
ref="notificationSent"
|
||||||
|
v-model="obj.notificationSent"
|
||||||
|
dense
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$sock.t('NotificationSent')"
|
||||||
|
data-cy="notificationSent"
|
||||||
|
:error-messages="form().serverErrors(this, 'notificationSent')"
|
||||||
|
@change="fieldValueChanged('notificationSent')"
|
||||||
|
></v-checkbox>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
<template v-if="obj.pGroup == 0">
|
<template v-if="obj.pGroup == 0">
|
||||||
<v-col cols="12">
|
<v-col cols="12">
|
||||||
<div class="text-h1 error--text">
|
<div class="text-h1 error--text">
|
||||||
@@ -1137,10 +1150,11 @@ export default {
|
|||||||
dbId: null,
|
dbId: null,
|
||||||
licenseExpire: null, //what is is in v8, "lockdate" in v7
|
licenseExpire: null, //what is is in v8, "lockdate" in v7
|
||||||
maintenanceExpire: null,
|
maintenanceExpire: null,
|
||||||
|
notificationSent: false,
|
||||||
wiki: null,
|
wiki: null,
|
||||||
tags: [],
|
tags: [],
|
||||||
//dto only props
|
|
||||||
trialMode: false, //v8
|
trialMode: false, //v8
|
||||||
|
//dto only props
|
||||||
customerUsers: 250,
|
customerUsers: 250,
|
||||||
maxDataGB: 20,
|
maxDataGB: 20,
|
||||||
users: 1,
|
users: 1,
|
||||||
@@ -1683,7 +1697,8 @@ async function fetchTranslatedText() {
|
|||||||
"Customer",
|
"Customer",
|
||||||
"DatabaseID",
|
"DatabaseID",
|
||||||
"TrialLicenseRequest",
|
"TrialLicenseRequest",
|
||||||
"LicenseTrialMode"
|
"LicenseTrialMode",
|
||||||
|
"NotificationSent"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
//////////////////////
|
//////////////////////
|
||||||
|
|||||||
Reference in New Issue
Block a user