This commit is contained in:
@@ -249,14 +249,111 @@
|
||||
$sock.t("PickListTemplates")
|
||||
}}</v-btn></v-col
|
||||
>
|
||||
<!-- ######################################################## -->
|
||||
<v-col cols="12" class="mt-8">
|
||||
<span class="text-h4 primary--text"> Email templates</span>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="v7NewKey"
|
||||
v-model="obj.v7NewKey"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalV7NewKey')"
|
||||
:error-messages="form().serverErrors(this, 'v7NewKey')"
|
||||
data-cy="v7NewKey"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('v7NewKey')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="v7AddOnKey"
|
||||
v-model="obj.v7AddOnKey"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalV7AddOnKey')"
|
||||
:error-messages="form().serverErrors(this, 'v7AddOnKey')"
|
||||
data-cy="v7AddOnKey"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('v7AddOnKey')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="v7TemporaryTrial"
|
||||
v-model="obj.v7TemporaryTrial"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalV7TemporaryTrial')"
|
||||
:error-messages="form().serverErrors(this, 'v7TemporaryTrial')"
|
||||
data-cy="v7TemporaryTrial"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('v7TemporaryTrial')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="ravenNewKeyAvailable"
|
||||
v-model="obj.ravenNewKeyAvailable"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalRavenNewKeyAvailable')"
|
||||
:error-messages="
|
||||
form().serverErrors(this, 'ravenNewKeyAvailable')
|
||||
"
|
||||
data-cy="ravenNewKeyAvailable"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('ravenNewKeyAvailable')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="validateEmail"
|
||||
v-model="obj.validateEmail"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalValidateEmail')"
|
||||
:error-messages="form().serverErrors(this, 'validateEmail')"
|
||||
data-cy="validateEmail"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('validateEmail')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="ravenTrialApproved"
|
||||
v-model="obj.ravenTrialApproved"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalRavenTrialApproved')"
|
||||
:error-messages="form().serverErrors(this, 'ravenTrialApproved')"
|
||||
data-cy="ravenTrialApproved"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('ravenTrialApproved')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<v-col cols="12">
|
||||
<v-textarea
|
||||
ref="ravenTrialRejected"
|
||||
v-model="obj.ravenTrialRejected"
|
||||
:readonly="formState.readOnly"
|
||||
:label="$sock.t('GlobalRavenTrialRejected')"
|
||||
:error-messages="form().serverErrors(this, 'ravenTrialRejected')"
|
||||
data-cy="ravenTrialRejected"
|
||||
auto-grow
|
||||
@input="fieldValueChanged('ravenTrialRejected')"
|
||||
></v-textarea>
|
||||
</v-col>
|
||||
|
||||
<!-- ######################################################## -->
|
||||
<v-col cols="12" class="mt-8">
|
||||
<div class="text-h4 primary--text">
|
||||
{{ $sock.t("CustomerAccessSettings") }}
|
||||
</div>
|
||||
</v-col>
|
||||
|
||||
<!-- ######################################################## -->
|
||||
<v-col cols="12">
|
||||
<v-expansion-panels>
|
||||
<v-expansion-panel key="3">
|
||||
@@ -386,7 +483,14 @@ export default {
|
||||
concurrency: 0,
|
||||
filterCaseSensitive: false,
|
||||
customerAllowUserSettings: false,
|
||||
customerAllowUserSettingsInTags: []
|
||||
customerAllowUserSettingsInTags: [],
|
||||
v7NewKey: null,
|
||||
v7AddOnKey: null,
|
||||
v7TemporaryTrial: null,
|
||||
ravenNewKeyAvailable: null,
|
||||
validateEmail: null,
|
||||
ravenTrialApproved: null,
|
||||
ravenTrialRejected: null
|
||||
},
|
||||
formState: {
|
||||
ready: false,
|
||||
@@ -757,7 +861,14 @@ async function fetchTranslatedText() {
|
||||
"AddressLongitude",
|
||||
"AdminEraseDatabaseWarning",
|
||||
"AdminEraseDatabase",
|
||||
"AdminEraseDatabaseLastWarning"
|
||||
"AdminEraseDatabaseLastWarning",
|
||||
"GlobalV7NewKey",
|
||||
"GlobalV7AddOnKey",
|
||||
"GlobalV7TemporaryTrial",
|
||||
"GlobalRavenNewKeyAvailable",
|
||||
"GlobalValidateEmail",
|
||||
"GlobalRavenTrialApproved",
|
||||
"GlobalRavenTrialRejected"
|
||||
]);
|
||||
}
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user