This commit is contained in:
@@ -184,6 +184,19 @@
|
|||||||
></v-checkbox>
|
></v-checkbox>
|
||||||
</v-col>
|
</v-col>
|
||||||
|
|
||||||
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
|
<v-checkbox
|
||||||
|
ref="renewal"
|
||||||
|
v-model="obj.renewal"
|
||||||
|
dense
|
||||||
|
:readonly="formState.readOnly"
|
||||||
|
:label="$sock.t('LicenseRenewal')"
|
||||||
|
data-cy="renewal"
|
||||||
|
:error-messages="form().serverErrors(this, 'renewal')"
|
||||||
|
@change="fieldValueChanged('renewal')"
|
||||||
|
></v-checkbox>
|
||||||
|
</v-col>
|
||||||
|
|
||||||
<v-col cols="12" sm="6" lg="4" xl="3">
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
||||||
<v-checkbox
|
<v-checkbox
|
||||||
ref="trialMode"
|
ref="trialMode"
|
||||||
@@ -1148,12 +1161,13 @@ export default {
|
|||||||
fetchEmail: null,
|
fetchEmail: null,
|
||||||
fetchedOn: null, //here, non null fetchedOn is read only
|
fetchedOn: null, //here, non null fetchedOn is read only
|
||||||
dbId: null,
|
dbId: null,
|
||||||
licenseExpire: null, //what is is in v8, "lockdate" in v7
|
licenseExpire: null, //what it is in v8, "lockdate" in v7
|
||||||
maintenanceExpire: null,
|
maintenanceExpire: null,
|
||||||
notificationSent: false,
|
notificationSent: false,
|
||||||
wiki: null,
|
wiki: null,
|
||||||
tags: [],
|
tags: [],
|
||||||
trialMode: false, //v8
|
trialMode: false,
|
||||||
|
renewal:false,
|
||||||
//dto only props
|
//dto only props
|
||||||
customerUsers: 250,
|
customerUsers: 250,
|
||||||
maxDataGB: 20,
|
maxDataGB: 20,
|
||||||
@@ -1782,6 +1796,7 @@ async function fetchTranslatedText() {
|
|||||||
"DatabaseID",
|
"DatabaseID",
|
||||||
"TrialLicenseRequest",
|
"TrialLicenseRequest",
|
||||||
"LicenseTrialMode",
|
"LicenseTrialMode",
|
||||||
|
"LicenseRenewal",
|
||||||
"NotificationSent"
|
"NotificationSent"
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user