This commit is contained in:
2023-01-08 19:33:51 +00:00
parent 44d0262458
commit 88528988c9

View File

@@ -947,6 +947,18 @@
@input="fieldValueChanged('dbId')" @input="fieldValueChanged('dbId')"
></v-text-field> ></v-text-field>
</v-col> </v-col>
<v-col cols="12" sm="6" lg="4" xl="3">
<v-checkbox
ref="trialMode"
v-model="obj.trialMode"
dense
:readonly="formState.readOnly"
:label="$sock.t('TrialLicenseRequest')"
data-cy="trialMode"
:error-messages="form().serverErrors(this, 'trialMode')"
@change="fieldValueChanged('trialMode')"
></v-checkbox>
</v-col>
</template> </template>
<!-- RavenSubscription --> <!-- RavenSubscription -->
<template v-if="obj.pGroup == 3"> <template v-if="obj.pGroup == 3">
@@ -1010,6 +1022,17 @@
@input="fieldValueChanged('dbId')" @input="fieldValueChanged('dbId')"
></v-text-field> ></v-text-field>
</v-col> </v-col>
<v-checkbox
ref="trialMode"
v-model="obj.trialMode"
dense
:readonly="formState.readOnly"
:label="$sock.t('TrialLicenseRequest')"
data-cy="trialMode"
:error-messages="form().serverErrors(this, 'trialMode')"
@change="fieldValueChanged('trialMode')"
></v-checkbox>
</template> </template>
<v-col cols="12" sm="6" lg="4" xl="3"> <v-col cols="12" sm="6" lg="4" xl="3">
@@ -1645,7 +1668,8 @@ async function fetchTranslatedText() {
"LicenseExpiration", "LicenseExpiration",
"ProductGroup", "ProductGroup",
"Customer", "Customer",
"DatabaseID" "DatabaseID",
"TrialLicenseRequest"
]); ]);
} }
////////////////////// //////////////////////