1131 lines
35 KiB
Vue
1131 lines
35 KiB
Vue
<template>
|
|
<v-container fluid>
|
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
|
|
|
<div v-if="formState.ready">
|
|
<gz-error :errorBoxMessage="formState.errorBoxMessage"></gz-error>
|
|
|
|
<v-form ref="form">
|
|
<v-tabs mobile-breakpoint="100" v-model="tab">
|
|
<v-tab>{{ $ay.t("Contact") }}</v-tab>
|
|
<v-tab v-if="obj.id != 0">{{ $ay.t("UserSettings") }}</v-tab>
|
|
|
|
<v-tabs-items v-model="tab">
|
|
<v-tab-item class="mt-4">
|
|
<v-row>
|
|
<v-col
|
|
v-if="form().showMe(this, 'customerId') && obj.userType == 3"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-pick-list
|
|
:ayaType="ayaTypes().Customer"
|
|
:showEditIcon="true"
|
|
:includeInactive="true"
|
|
v-model="obj.customerId"
|
|
:readonly="true"
|
|
:disabled="true"
|
|
:label="$ay.t('Customer')"
|
|
ref="customerId"
|
|
data-cy="customerId"
|
|
:error-messages="form().serverErrors(this, 'customerId')"
|
|
@input="fieldValueChanged('customerId')"
|
|
></gz-pick-list>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="
|
|
form().showMe(this, 'headOfficeId') && obj.userType == 4
|
|
"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-pick-list
|
|
:ayaType="ayaTypes().HeadOffice"
|
|
:showEditIcon="true"
|
|
:includeInactive="true"
|
|
v-model="obj.headOfficeId"
|
|
:readonly="true"
|
|
:disabled="true"
|
|
:label="$ay.t('HeadOffice')"
|
|
ref="headOfficeId"
|
|
data-cy="headOfficeId"
|
|
:error-messages="form().serverErrors(this, 'headOfficeId')"
|
|
@input="fieldValueChanged('headOfficeId')"
|
|
></gz-pick-list>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
v-model="obj.name"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('Name')"
|
|
:rules="[form().required(this, 'name')]"
|
|
:error-messages="form().serverErrors(this, 'name')"
|
|
ref="name"
|
|
data-cy="name"
|
|
@input="fieldValueChanged('name')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<gz-role-picker
|
|
:label="$ay.t('AuthorizationRoles')"
|
|
v-model="obj.roles"
|
|
:readonly="formState.readOnly"
|
|
ref="roles"
|
|
testId="roles"
|
|
:error-messages="form().serverErrors(this, 'roles')"
|
|
@input="fieldValueChanged('roles')"
|
|
limitSelectionTo="outside"
|
|
></gz-role-picker>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'Active')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<v-checkbox
|
|
v-model="obj.active"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('Active')"
|
|
ref="active"
|
|
data-cy="active"
|
|
:error-messages="form().serverErrors(this, 'active')"
|
|
@change="fieldValueChanged('active')"
|
|
></v-checkbox>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
name="username"
|
|
id="username"
|
|
v-model="login"
|
|
:readonly="formState.readOnly"
|
|
prepend-icon="$ayiUser"
|
|
autocomplete="off"
|
|
autocorrect="off"
|
|
autocapitalize="off"
|
|
spellcheck="false"
|
|
:label="$ay.t('NewLogin')"
|
|
:error-messages="form().serverErrors(this, 'login')"
|
|
ref="login"
|
|
@input="fieldValueChanged('login')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
name="password"
|
|
id="password"
|
|
v-model="password"
|
|
:readonly="formState.readOnly"
|
|
:append-outer-icon="reveal ? '$ayiEye' : '$ayiEyeSlash'"
|
|
prepend-icon="$ayiKey"
|
|
:label="$ay.t('NewPassword')"
|
|
:type="reveal ? 'text' : 'password'"
|
|
:error-messages="form().serverErrors(this, 'password')"
|
|
ref="password"
|
|
@input="fieldValueChanged('password')"
|
|
@click:append-outer="reveal = !reveal"
|
|
></v-text-field>
|
|
</v-col>
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<gz-date-time-picker
|
|
:label="$ay.t('LastLogin')"
|
|
v-model="obj.lastLogin"
|
|
readonly
|
|
disabled
|
|
ref="lastLogin"
|
|
testId="lastLogin"
|
|
></gz-date-time-picker>
|
|
</v-col>
|
|
<v-col v-if="form().showMe(this, 'Notes')" cols="12">
|
|
<v-textarea
|
|
v-model="obj.notes"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('UserNotes')"
|
|
:error-messages="form().serverErrors(this, 'notes')"
|
|
ref="notes"
|
|
data-cy="notes"
|
|
@input="fieldValueChanged('notes')"
|
|
auto-grow
|
|
></v-textarea>
|
|
</v-col>
|
|
|
|
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
|
<gz-tag-picker
|
|
v-model="obj.tags"
|
|
:readonly="formState.readOnly"
|
|
ref="tags"
|
|
data-cy="tags"
|
|
:error-messages="form().serverErrors(this, 'tags')"
|
|
@input="fieldValueChanged('tags')"
|
|
></gz-tag-picker>
|
|
</v-col>
|
|
|
|
<v-col cols="12">
|
|
<gz-custom-fields
|
|
v-model="obj.customFields"
|
|
:formKey="formCustomTemplateKey"
|
|
:readonly="formState.readOnly"
|
|
:parentVM="this"
|
|
ref="customFields"
|
|
data-cy="customFields"
|
|
:error-messages="form().serverErrors(this, 'customFields')"
|
|
@input="fieldValueChanged('customFields')"
|
|
></gz-custom-fields>
|
|
</v-col>
|
|
|
|
<v-col v-if="form().showMe(this, 'Wiki')" cols="12">
|
|
<gz-wiki
|
|
:ayaType="ayaType"
|
|
:ayaId="obj.id"
|
|
ref="wiki"
|
|
v-model="obj.wiki"
|
|
:readonly="formState.readOnly"
|
|
@input="fieldValueChanged('wiki')"
|
|
></gz-wiki
|
|
></v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'Attachments') && obj.id"
|
|
cols="12"
|
|
>
|
|
<gz-attachments
|
|
:readonly="formState.readOnly"
|
|
:ayaType="ayaType"
|
|
:ayaId="obj.id"
|
|
></gz-attachments
|
|
></v-col>
|
|
</v-row>
|
|
</v-tab-item>
|
|
<v-tab-item v-if="obj.id != 0" class="mt-4">
|
|
<v-row>
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-select
|
|
v-model="optionsObj.translationId"
|
|
:items="selectLists.translations"
|
|
item-text="name"
|
|
item-value="id"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('Translation')"
|
|
ref="translationId"
|
|
:error-messages="form().serverErrors(this, 'translationId')"
|
|
@input="fieldValueChanged('translationId')"
|
|
></v-select>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<gz-email
|
|
v-model="optionsObj.emailAddress"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('UserEmailAddress')"
|
|
:error-messages="form().serverErrors(this, 'emailAddress')"
|
|
ref="emailAddress"
|
|
@input="fieldValueChanged('emailAddress')"
|
|
data-cy="emailAddress"
|
|
></gz-email>
|
|
</v-col>
|
|
<v-col
|
|
v-if="form().showMe(this, 'Phone1')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-phone
|
|
v-model="optionsObj.phone1"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('UserPhone1')"
|
|
ref="phone1"
|
|
data-cy="phone1"
|
|
:error-messages="form().serverErrors(this, 'phone1')"
|
|
@input="fieldValueChanged('phone1')"
|
|
></gz-phone>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'Phone2')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-phone
|
|
v-model="optionsObj.phone2"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('UserPhone2')"
|
|
ref="phone2"
|
|
data-cy="phone2"
|
|
:error-messages="form().serverErrors(this, 'phone2')"
|
|
@input="fieldValueChanged('phone2')"
|
|
></gz-phone>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'Phone3')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-phone
|
|
v-model="optionsObj.phone3"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('UserPageAddress')"
|
|
ref="phone3"
|
|
data-cy="phone3"
|
|
:error-messages="form().serverErrors(this, 'phone3')"
|
|
@input="fieldValueChanged('phone3')"
|
|
></gz-phone>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
v-model="optionsObj.mapUrlTemplate"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('MapUrlTemplate')"
|
|
:error-messages="
|
|
form().serverErrors(this, 'mapUrlTemplate')
|
|
"
|
|
ref="mapUrlTemplate"
|
|
@input="fieldValueChanged('mapUrlTemplate')"
|
|
data-cy="mapUrlTemplate"
|
|
></v-text-field>
|
|
<v-select
|
|
:items="selectLists.mapUrls"
|
|
item-text="name"
|
|
item-value="value"
|
|
@input="mapUrlSelectionChanged"
|
|
></v-select>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
v-model="optionsObj.currencyName"
|
|
hint="e.g. USD, EUR, GBP, AUD, CAD etc"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('CurrencyCode')"
|
|
:rules="[form().required(this, 'currencyName')]"
|
|
:error-messages="form().serverErrors(this, 'currencyName')"
|
|
ref="currencyName"
|
|
@input="fieldValueChanged('currencyName')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-checkbox
|
|
v-model="optionsObj.hour12"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('Hour12')"
|
|
ref="hour12"
|
|
:error-messages="form().serverErrors(this, 'hour12')"
|
|
@change="fieldValueChanged('hour12')"
|
|
></v-checkbox>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
v-model="optionsObj.languageOverride"
|
|
:placeholder="locale().getBrowserFirstLanguage()"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('LanguageCode')"
|
|
:error-messages="
|
|
form().serverErrors(this, 'languageOverride')
|
|
"
|
|
ref="languageOverride"
|
|
@input="fieldValueChanged('languageOverride')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
v-model="optionsObj.timeZoneOverride"
|
|
:placeholder="locale().getBrowserTimeZoneName()"
|
|
:readonly="formState.readOnly"
|
|
:label="$ay.t('TimeZone')"
|
|
:error-messages="
|
|
form().serverErrors(this, 'timeZoneOverride')
|
|
"
|
|
ref="timeZoneOverride"
|
|
@input="fieldValueChanged('timeZoneOverride')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<!-- https://vuetifyjs.com/en/components/color-pickers -->
|
|
<span class="v-label v-label--active theme--light">
|
|
{{ $ay.t("UserColor") }}
|
|
</span>
|
|
<v-color-picker
|
|
v-model="optionsObj.uiColor"
|
|
:readonly="formState.readOnly"
|
|
hide-mode-switch
|
|
mode="hexa"
|
|
:error-messages="form().serverErrors(this, 'uiColor')"
|
|
ref="uiColor"
|
|
@input="fieldValueChanged('uiColor')"
|
|
></v-color-picker>
|
|
</v-col>
|
|
</v-row>
|
|
</v-tab-item>
|
|
</v-tabs-items>
|
|
</v-tabs>
|
|
</v-form>
|
|
</div>
|
|
<template v-if="!formState.ready">
|
|
<v-progress-circular
|
|
indeterminate
|
|
color="primary"
|
|
:size="60"
|
|
></v-progress-circular>
|
|
</template>
|
|
</v-container>
|
|
</template>
|
|
|
|
<script>
|
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
/* Xeslint-disable */
|
|
//
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
const FORM_KEY = "user-edit";
|
|
const API_BASE_URL = "user/";
|
|
const FORM_CUSTOM_TEMPLATE_KEY = "User";
|
|
|
|
export default {
|
|
async created() {
|
|
//created is called when the route is updated to show a new record even though we don't need to re-init again
|
|
let vm = this;
|
|
try {
|
|
await initForm(vm);
|
|
|
|
vm.rights = window.$gz.role.getRights(window.$gz.type.User);
|
|
vm.formState.readOnly = !vm.rights.change;
|
|
window.$gz.eventBus.$on("menu-click", clickHandler);
|
|
|
|
//id 0 means create a new record don't load one
|
|
if (vm.$route.params.recordid != 0) {
|
|
//is there already an obj from a prior operation?
|
|
if (this.$route.params.obj) {
|
|
//yes, no need to fetch it
|
|
this.obj = this.$route.params.obj;
|
|
this.optionsObj = this.$route.params.optionsObj;
|
|
vm.formState.loading = false; //here we handle it immediately
|
|
} else {
|
|
await vm.getDataFromApi(vm.$route.params.recordid); //let getdata handle loading
|
|
}
|
|
} else {
|
|
vm.password = window.$gz.util.getRandomPassword();
|
|
// vm.login = window.$gz.util.getRandomPassword();
|
|
/* Customer = 3,
|
|
HeadOffice = 4, */
|
|
if (vm.$route.params.customerid && vm.$route.params.customerid != 0) {
|
|
vm.obj.customerId = vm.$route.params.customerid;
|
|
vm.obj.userType = 3;
|
|
} else if (
|
|
vm.$route.params.headofficeid &&
|
|
vm.$route.params.headofficeid != 0
|
|
) {
|
|
console.log(vm.$route.params.headofficeid);
|
|
vm.obj.headOfficeId = vm.$route.params.headofficeid;
|
|
vm.obj.userType = 4;
|
|
} else {
|
|
//no customer or headoffice id, can't proceed
|
|
// navigate backwards
|
|
vm.$router.go(-1);
|
|
//if above turns out to be problematic just go to customers list instead
|
|
// vm.$router.push({
|
|
// name: "cust-customers"
|
|
// });
|
|
}
|
|
vm.formState.loading = false; //here we handle it immediately
|
|
}
|
|
//set initial form status
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false,
|
|
valid: true
|
|
});
|
|
|
|
generateMenu(vm);
|
|
} catch (error) {
|
|
window.$gz.errorHandler.handleFormError(error, vm);
|
|
} finally {
|
|
vm.formState.ready = true;
|
|
}
|
|
},
|
|
async beforeRouteLeave(to, from, next) {
|
|
if (!this.formState.dirty || JUST_DELETED) {
|
|
next();
|
|
return;
|
|
}
|
|
if ((await window.$gz.dialog.confirmLeaveUnsaved()) === true) {
|
|
next();
|
|
} else {
|
|
next(false);
|
|
}
|
|
},
|
|
beforeDestroy() {
|
|
window.$gz.eventBus.$off("menu-click", clickHandler);
|
|
},
|
|
data() {
|
|
return {
|
|
formCustomTemplateKey: FORM_CUSTOM_TEMPLATE_KEY,
|
|
selectLists: {
|
|
usertypes: [],
|
|
translations: [],
|
|
mapUrls: window.$gz.util.mapProviderUrls()
|
|
},
|
|
obj: {
|
|
id: 0,
|
|
concurrency: 0,
|
|
active: false,
|
|
name: null,
|
|
roles: 2048,
|
|
userType: 3,
|
|
employeeNumber: null,
|
|
notes: null,
|
|
customerId: null,
|
|
headOfficeId: null,
|
|
vendorId: null,
|
|
wiki: null,
|
|
customFields: "{}",
|
|
tags: [],
|
|
lastLogin: null
|
|
},
|
|
optionsObj: {
|
|
/*concurrency": 7490431,
|
|
"translationId": 1,
|
|
"emailAddress": null,
|
|
"uiColor": "#000000",
|
|
"languageOverride": null,
|
|
"timeZoneOverride": null,
|
|
"currencyName": "USD",
|
|
"hour12": true,
|
|
"userId": 1 */
|
|
id: 0,
|
|
concurrency: 0,
|
|
emailAddress: null,
|
|
phone1: null,
|
|
phone2: null,
|
|
phone3: null,
|
|
mapUrlTemplate: null,
|
|
uiColor: null,
|
|
languageOverride: null,
|
|
timeZoneOverride: null,
|
|
currencyName: null,
|
|
hour12: null,
|
|
translationId: null
|
|
},
|
|
login: null,
|
|
password: null,
|
|
reveal: true,
|
|
tab: 0,
|
|
formState: {
|
|
ready: false,
|
|
dirty: false,
|
|
valid: true,
|
|
readOnly: false,
|
|
loading: true,
|
|
errorBoxMessage: null,
|
|
appError: null,
|
|
serverError: {}
|
|
},
|
|
rights: window.$gz.role.defaultRightsObject(),
|
|
ayaType: window.$gz.type.User
|
|
};
|
|
},
|
|
//WATCHERS
|
|
watch: {
|
|
formState: {
|
|
handler: function(val) {
|
|
if (this.formState.loading) {
|
|
return;
|
|
}
|
|
|
|
//enable / disable save button
|
|
if (val.dirty && val.valid && !val.readOnly) {
|
|
window.$gz.eventBus.$emit("menu-enable-item", FORM_KEY + ":save");
|
|
} else {
|
|
window.$gz.eventBus.$emit("menu-disable-item", FORM_KEY + ":save");
|
|
}
|
|
|
|
//enable / disable duplicate / new button
|
|
if (!val.dirty && val.valid && !val.readOnly) {
|
|
window.$gz.eventBus.$emit(
|
|
"menu-enable-item",
|
|
FORM_KEY + ":duplicate"
|
|
);
|
|
window.$gz.eventBus.$emit("menu-enable-item", FORM_KEY + ":new");
|
|
} else {
|
|
window.$gz.eventBus.$emit(
|
|
"menu-disable-item",
|
|
FORM_KEY + ":duplicate"
|
|
);
|
|
window.$gz.eventBus.$emit("menu-disable-item", FORM_KEY + ":new");
|
|
}
|
|
},
|
|
deep: true
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
canSave: function() {
|
|
return this.formState.valid && this.formState.dirty;
|
|
},
|
|
canDuplicate: function() {
|
|
return this.formState.valid && !this.formState.dirty;
|
|
},
|
|
ayaTypes: function() {
|
|
return window.$gz.type;
|
|
},
|
|
translation() {
|
|
return window.$gz.translation;
|
|
},
|
|
locale() {
|
|
return window.$gz.locale;
|
|
},
|
|
mapUrlSelectionChanged(val) {
|
|
this.optionsObj.mapUrlTemplate = val;
|
|
this.fieldValueChanged("mapUrlTemplate");
|
|
},
|
|
form() {
|
|
return window.$gz.form;
|
|
},
|
|
fieldValueChanged(ref) {
|
|
if (
|
|
this.formState.ready &&
|
|
!this.formState.loading &&
|
|
!this.formState.readOnly
|
|
) {
|
|
window.$gz.form.fieldValueChanged(this, ref);
|
|
}
|
|
},
|
|
async getDataFromApi(recordId) {
|
|
let vm = this;
|
|
vm.formState.loading = true;
|
|
|
|
if (!recordId) {
|
|
throw new Error(FORM_KEY + "::getDataFromApi -> Missing recordID!");
|
|
}
|
|
let url = API_BASE_URL + recordId;
|
|
try {
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
let res = await window.$gz.api.get(url);
|
|
|
|
if (res.error) {
|
|
//Not found?
|
|
if (res.error.code == "2010") {
|
|
window.$gz.form.handleObjectNotFound(vm);
|
|
}
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
vm.formState.loading = false;
|
|
} else {
|
|
vm.obj = res.data;
|
|
//modify the menu as necessary
|
|
generateMenu(vm);
|
|
|
|
//Update the form status
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false,
|
|
valid: true,
|
|
loading: false
|
|
});
|
|
|
|
await vm.getUserOptionsDataFromApi();
|
|
}
|
|
} catch (error) {
|
|
window.$gz.errorHandler.handleFormError(error, vm);
|
|
vm.formState.loading = false;
|
|
}
|
|
},
|
|
async submit() {
|
|
let vm = this;
|
|
if (vm.canSave == false) {
|
|
return;
|
|
}
|
|
|
|
try {
|
|
vm.formState.loading = true;
|
|
let url = API_BASE_URL;
|
|
//clear any errors vm might be around from previous submit
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
|
|
//add in password and login if changed
|
|
let submitObject = vm.obj;
|
|
if (vm.password != null && vm.password != "") {
|
|
submitObject.password = vm.password;
|
|
}
|
|
if (vm.login != null && vm.login != "") {
|
|
submitObject.login = vm.login;
|
|
}
|
|
if (submitObject.roles == null) {
|
|
submitObject.roles = 0;
|
|
}
|
|
let res = await window.$gz.api.upsert(url, submitObject);
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
//Logic for detecting if a post or put: if id then it was a post, if no id then it was a put
|
|
if (res.data.id) {
|
|
//POST - whole new object returned
|
|
vm.obj = res.data;
|
|
await vm.getUserOptionsDataFromApi();
|
|
//Change URL to new record
|
|
//NOTE: will not cause a page re-render, almost nothing does unless forced with a KEY property or using router.GO()
|
|
|
|
this.$router.push({
|
|
name: "cust-user",
|
|
params: {
|
|
recordid: res.data.id,
|
|
obj: res.data,
|
|
optionsObj: vm.optionsObj
|
|
}
|
|
});
|
|
} else {
|
|
//PUT - only concurrency token is returned (**warning, if server changes object other fields then this needs to act more like POST above but is more efficient this way**)
|
|
//Handle "put" of an existing record (UPDATE)
|
|
vm.obj.concurrency = res.data.concurrency;
|
|
await vm.submitOptions();
|
|
}
|
|
|
|
//Update the form status
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false,
|
|
valid: true
|
|
});
|
|
}
|
|
} catch (ex) {
|
|
window.$gz.errorHandler.handleFormError(ex, vm);
|
|
} finally {
|
|
vm.formState.loading = false;
|
|
}
|
|
},
|
|
async remove() {
|
|
let vm = this;
|
|
try {
|
|
let dialogResult = await window.$gz.dialog.confirmDelete();
|
|
if (dialogResult != true) {
|
|
return;
|
|
}
|
|
|
|
//do the delete
|
|
vm.formState.loading = true;
|
|
//No need to delete a new record, just abandon it...
|
|
if (vm.$route.params.recordid == 0) {
|
|
//this should not get offered for delete but to be safe and clear just in case:
|
|
JUST_DELETED = true;
|
|
// navigate backwards
|
|
vm.$router.go(-1);
|
|
} else {
|
|
let url = API_BASE_URL + vm.$route.params.recordid;
|
|
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
let res = await window.$gz.api.remove(url);
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
//workaround to prevent warning about leaving dirty record
|
|
//For some reason I couldn't just reset isdirty in formstate
|
|
JUST_DELETED = true;
|
|
// navigate backwards
|
|
vm.$router.go(-1);
|
|
}
|
|
}
|
|
} catch (ex) {
|
|
window.$gz.errorHandler.handleFormError(ex, vm);
|
|
} finally {
|
|
vm.formState.loading = false;
|
|
}
|
|
},
|
|
async duplicate() {
|
|
let vm = this;
|
|
if (!vm.canDuplicate || vm.$route.params.recordid == 0) {
|
|
return;
|
|
}
|
|
vm.formState.loading = true;
|
|
let url = API_BASE_URL + "duplicate/" + vm.$route.params.recordid;
|
|
|
|
try {
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
let res = await window.$gz.api.upsert(url);
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
//Navigate to new record
|
|
this.$router.push({
|
|
name: "adm-user",
|
|
params: {
|
|
recordid: res.data.id,
|
|
obj: res.data // pass data object to new form
|
|
}
|
|
});
|
|
}
|
|
} catch (ex) {
|
|
window.$gz.errorHandler.handleFormError(ex, vm);
|
|
} finally {
|
|
vm.formState.loading = false;
|
|
}
|
|
},
|
|
async getUserOptionsDataFromApi() {
|
|
let vm = this;
|
|
vm.formState.loading = true;
|
|
|
|
let url = `user-option/${vm.obj.id}`;
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
try {
|
|
let res = await window.$gz.api.get(url);
|
|
|
|
if (res.error) {
|
|
//Not found?
|
|
if (res.error.code == "2010") {
|
|
window.$gz.form.handleObjectNotFound(vm);
|
|
}
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
vm.optionsObj = res.data;
|
|
// vm.activeTranslationId = res.data.translationId;
|
|
|
|
//Update the form status
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false,
|
|
valid: true,
|
|
loading: false
|
|
});
|
|
//modify the menu as necessary
|
|
generateMenu(vm);
|
|
}
|
|
} catch (error) {
|
|
//Update the form status
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
loading: false
|
|
});
|
|
window.$gz.errorHandler.handleFormError(error, vm);
|
|
}
|
|
},
|
|
async submitOptions() {
|
|
let vm = this;
|
|
if (vm.canSave) {
|
|
vm.formState.loading = true;
|
|
|
|
let url = `user-option/${vm.obj.id}`;
|
|
|
|
//clear any errors vm might be around from previous submit
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
try {
|
|
let res = await window.$gz.api.upsert(url, vm.optionsObj);
|
|
|
|
vm.formState.loading = false;
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
//UserOptions is never a POST as it always exists and can't be deleted so always a PUT
|
|
|
|
//Handle "put" of an existing record (UPDATE)
|
|
vm.optionsObj.concurrency = res.data.concurrency;
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false
|
|
});
|
|
}
|
|
} catch (error) {
|
|
vm.formState.loading = false;
|
|
window.$gz.errorHandler.handleFormError(error, vm);
|
|
}
|
|
}
|
|
},
|
|
async sendResetCode() {
|
|
let vm = this;
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
try {
|
|
let res = await window.$gz.api.post(
|
|
`auth/request-reset-password/${vm.obj.id}`,
|
|
null
|
|
);
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
vm.obj.concurrency = res.data.concurrency;
|
|
}
|
|
} catch (error) {
|
|
window.$gz.errorHandler.handleFormError(error, vm);
|
|
}
|
|
}
|
|
|
|
//------more above here
|
|
}
|
|
};
|
|
|
|
/////////////////////////////
|
|
//
|
|
//
|
|
async function clickHandler(menuItem) {
|
|
if (!menuItem) {
|
|
return;
|
|
}
|
|
let m = window.$gz.menu.parseMenuItem(menuItem);
|
|
if (m.owner == FORM_KEY && !m.disabled) {
|
|
switch (m.key) {
|
|
case "save":
|
|
m.vm.submit();
|
|
break;
|
|
case "delete":
|
|
m.vm.remove();
|
|
break;
|
|
case "new":
|
|
m.vm.$router.push({
|
|
name: "adm-user",
|
|
params: { recordid: 0, new: true }
|
|
});
|
|
break;
|
|
case "duplicate":
|
|
m.vm.duplicate();
|
|
break;
|
|
case "report":
|
|
if (m.id != null) {
|
|
//last report selected is in m.id
|
|
m.vm.$router.push({
|
|
name: "ay-report",
|
|
params: { recordid: m.id, ayatype: window.$gz.type.User }
|
|
});
|
|
} else {
|
|
//general report selector chosen
|
|
|
|
let res = await m.vm.$refs.reportSelector.open({
|
|
ObjectType: window.$gz.type.User,
|
|
selectedRowIds: [m.vm.obj.id]
|
|
});
|
|
|
|
//if null for no selection
|
|
//just bail out
|
|
if (res == null) {
|
|
return;
|
|
}
|
|
//persist last report selected
|
|
window.$gz.form.setLastReport(FORM_KEY, res);
|
|
|
|
//Now open the report viewer...
|
|
m.vm.$router.push({
|
|
name: "ay-report",
|
|
params: { recordid: res.id, ayatype: window.$gz.type.User }
|
|
});
|
|
}
|
|
break;
|
|
case "directnotify":
|
|
//nav to direct notify with list of users appended to route
|
|
if (m.vm.obj.id == 0) {
|
|
m.vm.$router.push({
|
|
name: "home-notify-direct"
|
|
});
|
|
} else {
|
|
m.vm.$router.push({
|
|
name: "home-notify-direct",
|
|
params: { userIdList: m.vm.obj.id }
|
|
});
|
|
}
|
|
break;
|
|
case "sendreset":
|
|
m.vm.sendResetCode();
|
|
break;
|
|
default:
|
|
window.$gz.eventBus.$emit(
|
|
"notify-warning",
|
|
FORM_KEY + "::context click: [" + m.key + "]"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
//////////////////////
|
|
//
|
|
//
|
|
function generateMenu(vm) {
|
|
let menuOptions = {
|
|
isMain: false,
|
|
icon: "$ayiUser",
|
|
title: "Contact",
|
|
helpUrl: "form-cust-contact",
|
|
formData: {
|
|
ayaType: window.$gz.type.User,
|
|
recordId: vm.$route.params.recordid,
|
|
formCustomTemplateKey: FORM_CUSTOM_TEMPLATE_KEY
|
|
},
|
|
menuItems: []
|
|
};
|
|
|
|
if (vm.rights.change) {
|
|
menuOptions.menuItems.push({
|
|
title: "Save",
|
|
icon: "$ayiSave",
|
|
surface: true,
|
|
key: FORM_KEY + ":save",
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
if (vm.rights.delete && vm.$route.params.recordid != 0) {
|
|
menuOptions.menuItems.push({
|
|
title: "Delete",
|
|
icon: "$ayiTrashAlt",
|
|
surface: false,
|
|
key: FORM_KEY + ":delete",
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
//STUB REPORTS
|
|
//Report not Print, print is a further option
|
|
menuOptions.menuItems.push({
|
|
title: "Report",
|
|
icon: "$ayiFileAlt",
|
|
key: FORM_KEY + ":report",
|
|
vm: vm
|
|
});
|
|
|
|
//get last report selected
|
|
let lastReport = window.$gz.form.getLastReport(FORM_KEY);
|
|
if (lastReport != null) {
|
|
menuOptions.menuItems.push({
|
|
title: lastReport.name,
|
|
icon: "$ayiFileAlt",
|
|
key: FORM_KEY + ":report:" + lastReport.id,
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
if (vm.rights.change) {
|
|
menuOptions.menuItems.push({
|
|
title: "New",
|
|
icon: "$ayiPlus",
|
|
key: FORM_KEY + ":new",
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
if (vm.rights.change && vm.$route.params.recordid != 0) {
|
|
menuOptions.menuItems.push({
|
|
title: "Duplicate",
|
|
icon: "$ayiClone",
|
|
key: FORM_KEY + ":duplicate",
|
|
vm: vm
|
|
});
|
|
}
|
|
menuOptions.menuItems.push({ divider: true, inset: false });
|
|
if (vm.$route.params.recordid != 0) {
|
|
menuOptions.menuItems.push({
|
|
title: "DirectNotification",
|
|
icon: "$ayiCommentAlt",
|
|
key: FORM_KEY + ":directnotify",
|
|
vm: vm
|
|
});
|
|
|
|
if (vm.rights.change) {
|
|
menuOptions.menuItems.push({
|
|
title: "SendPasswordResetCode",
|
|
icon: null,
|
|
key: FORM_KEY + ":sendreset",
|
|
vm: vm
|
|
});
|
|
}
|
|
}
|
|
menuOptions.menuItems.push({ divider: true, inset: false });
|
|
window.$gz.eventBus.$emit("menu-change", menuOptions);
|
|
}
|
|
|
|
let JUST_DELETED = false;
|
|
|
|
/////////////////////////////////
|
|
//
|
|
//
|
|
async function initForm(vm) {
|
|
await fetchTranslatedText(vm);
|
|
await window.$gz.formCustomTemplate.get(FORM_CUSTOM_TEMPLATE_KEY);
|
|
await populateSelectionLists(vm);
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////
|
|
//
|
|
// Ensures UI translated text is available
|
|
//
|
|
async function fetchTranslatedText(vm) {
|
|
await window.$gz.translation.cacheTranslations([
|
|
"UserSettings",
|
|
"Contact",
|
|
"Name",
|
|
"Customer",
|
|
"HeadOffice",
|
|
"NewLogin",
|
|
"NewPassword",
|
|
"AuthorizationRoles",
|
|
"LastLogin",
|
|
"UserNotes",
|
|
"UserType",
|
|
"Active",
|
|
"UserCustom1",
|
|
"UserCustom2",
|
|
"UserCustom3",
|
|
"UserCustom4",
|
|
"UserCustom5",
|
|
"UserCustom6",
|
|
"UserCustom7",
|
|
"UserCustom8",
|
|
"UserCustom9",
|
|
"UserCustom10",
|
|
"UserCustom11",
|
|
"UserCustom12",
|
|
"UserCustom13",
|
|
"UserCustom14",
|
|
"UserCustom15",
|
|
"UserCustom16",
|
|
"CurrencyCode",
|
|
"LanguageCode",
|
|
"TimeZone",
|
|
"Hour12",
|
|
"UserEmailAddress",
|
|
"UserColor",
|
|
"Translation",
|
|
"DarkMode",
|
|
"MapUrlTemplate",
|
|
"UserPhone1",
|
|
"UserPhone2",
|
|
"UserPageAddress",
|
|
"SendPasswordResetCode"
|
|
]);
|
|
}
|
|
|
|
//////////////////////
|
|
//
|
|
//
|
|
async function populateSelectionLists(vm) {
|
|
//http://localhost:7575/api/v8/translation/list
|
|
let res = await window.$gz.api.get("translation/list");
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
//window.$gz.errorHandler.handleFormError(res.error, vm);
|
|
} else {
|
|
vm.selectLists.translations = res.data;
|
|
}
|
|
}
|
|
</script>
|