case 4173

This commit is contained in:
2023-05-10 18:33:27 +00:00
parent d4f3f3eb30
commit 02213102a2
4 changed files with 394 additions and 10 deletions

View File

@@ -411,6 +411,51 @@
</v-tabs-items>
</v-tabs>
</v-form>
<v-dialog v-model="emailDialog">
<v-card>
<v-card-title>
{{ $ay.t("SendEmail") }}
</v-card-title>
<v-card-text>
<v-row dense class="mt-2">
<v-col cols="12">
<v-text-field
ref="subject"
v-model="subject"
dense
:label="$ay.t('MemoSubject')"
required
></v-text-field>
</v-col>
<v-col cols="12">
<v-textarea
ref="message"
v-model="message"
dense
:label="$ay.t('MemoMessage')"
required
auto-grow
></v-textarea>
</v-col>
</v-row>
</v-card-text>
<v-card-actions>
<v-btn color="blue darken-1" text @click="emailDialog = false">{{
$ay.t("Close")
}}</v-btn>
<v-spacer></v-spacer>
<v-btn
color="blue darken-1"
text
:disabled="
subject == null || message == null || obj.emailAddress == null
"
@click="sendEmail()"
>{{ $ay.t("OK") }}</v-btn
>
</v-card-actions>
</v-card>
</v-dialog>
</div>
<v-overlay :value="!formState.ready || formState.loading">
<v-progress-circular indeterminate :size="64" />
@@ -479,7 +524,10 @@ export default {
serverError: {}
},
rights: window.$gz.role.defaultRightsObject(),
ayaType: window.$gz.type.User
ayaType: window.$gz.type.User,
emailDialog: false,
subject: null,
message: null
};
},
watch: {
@@ -588,6 +636,37 @@ export default {
window.$gz.eventBus.$off("menu-click", clickHandler);
},
methods: {
async sendEmail() {
if (
this.obj.id == 0 ||
this.subject == null ||
this.message == null ||
window.$gz.util.stringIsNullOrEmpty(this.obj.emailAddress)
) {
return;
}
window.$gz.form.deleteAllErrorBoxErrors(this);
try {
const res = await window.$gz.api.upsert("notify/direct-smtp", {
ObjectId: this.obj.id,
aType: this.ayaType,
toAddress: this.obj.emailAddress,
subject: this.subject,
textBody: this.message
});
if (res.error) {
this.formState.serverError = res.error;
window.$gz.form.setErrorBoxErrors(this);
}
} catch (error) {
window.$gz.form.setFormState({
vm: this,
loading: false
});
window.$gz.errorHandler.handleFormError(error, this);
}
this.emailDialog = false;
},
goHelp() {
window.open(window.$gz.api.helpUrl() + "ay-start-localization", "_blank");
},
@@ -898,6 +977,9 @@ async function clickHandler(menuItem) {
case "disable2fa":
m.vm.disableTfa();
break;
case "sendemail":
m.vm.emailDialog = true;
break;
default:
window.$gz.eventBus.$emit(
"notify-warning",
@@ -998,6 +1080,20 @@ function generateMenu(vm) {
}
}
}
if (
vm.rights.change &&
vm.$route.params.recordid != 0 &&
!window.$gz.util.stringIsNullOrEmpty(vm.obj.emailAddress)
) {
menuOptions.menuItems.push({
title: "SendEmail",
icon: "$ayiAt",
key: FORM_KEY + ":sendemail",
vm: vm
});
}
menuOptions.menuItems.push({ divider: true, inset: false });
window.$gz.eventBus.$emit("menu-change", menuOptions);
}
@@ -1062,7 +1158,8 @@ async function fetchTranslatedText() {
"SendPasswordResetCode",
"AuthDisableTwoFactor",
"AuthTwoFactorDisabled",
"AllowLogin"
"AllowLogin",
"SendEmail"
]);
}