672 lines
19 KiB
Vue
672 lines
19 KiB
Vue
<template>
|
|
<div>
|
|
<gz-report-selector ref="reportSelector"></gz-report-selector>
|
|
<div v-if="formState.ready">
|
|
<gz-error :error-box-message="formState.errorBoxMessage"></gz-error>
|
|
<v-form ref="form">
|
|
<v-row dense>
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-text-field
|
|
ref="name"
|
|
v-model="obj.name"
|
|
dense
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('ProductName')"
|
|
:rules="[form().required(this, 'name')]"
|
|
:error-messages="form().serverErrors(this, 'name')"
|
|
data-cy="name"
|
|
@input="fieldValueChanged('name')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'Vendor')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-pick-list
|
|
ref="vendorId"
|
|
v-model="obj.vendorId"
|
|
:aya-type="sockTypes().Vendor"
|
|
show-edit-icon
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('Vendor')"
|
|
:error-messages="form().serverErrors(this, 'vendorId')"
|
|
:rules="[form().required(this, 'vendorId')]"
|
|
@input="fieldValueChanged('vendorId')"
|
|
></gz-pick-list>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'ProductVendorCode')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<v-text-field
|
|
ref="vendorCode"
|
|
v-model="obj.vendorCode"
|
|
dense
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('ProductVendorCode')"
|
|
data-cy="vendorCode"
|
|
:error-messages="form().serverErrors(this, 'vendorCode')"
|
|
@input="fieldValueChanged('vendorCode')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'ProductOurCode')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<v-text-field
|
|
ref="ourCode"
|
|
v-model="obj.ourCode"
|
|
dense
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('ProductOurCode')"
|
|
data-cy="ourCode"
|
|
:error-messages="form().serverErrors(this, 'ourCode')"
|
|
@input="fieldValueChanged('ourCode')"
|
|
></v-text-field>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'ProductLicenseInterval')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-duration-picker
|
|
ref="licenseInterval"
|
|
v-model="obj.licenseInterval"
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('ProductLicenseInterval')"
|
|
:show-seconds="false"
|
|
data-cy="licenseInterval"
|
|
:error-messages="form().serverErrors(this, 'licenseInterval')"
|
|
@input="fieldValueChanged('licenseInterval')"
|
|
></gz-duration-picker>
|
|
</v-col>
|
|
|
|
<v-col
|
|
v-if="form().showMe(this, 'ProductMaintInterval')"
|
|
cols="12"
|
|
sm="6"
|
|
lg="4"
|
|
xl="3"
|
|
>
|
|
<gz-duration-picker
|
|
ref="maintInterval"
|
|
v-model="obj.maintInterval"
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('ProductMaintInterval')"
|
|
:show-seconds="false"
|
|
data-cy="maintInterval"
|
|
:error-messages="form().serverErrors(this, 'maintInterval')"
|
|
@input="fieldValueChanged('maintInterval')"
|
|
></gz-duration-picker>
|
|
</v-col>
|
|
|
|
<v-col cols="12" sm="6" lg="4" xl="3">
|
|
<v-checkbox
|
|
ref="active"
|
|
v-model="obj.active"
|
|
dense
|
|
:readonly="formState.readOnly"
|
|
:label="$sock.t('Active')"
|
|
data-cy="active"
|
|
:error-messages="form().serverErrors(this, 'active')"
|
|
@change="fieldValueChanged('active')"
|
|
></v-checkbox>
|
|
</v-col>
|
|
<!-- --------------------------------- -->
|
|
|
|
<v-col v-if="form().showMe(this, 'Tags')" cols="12">
|
|
<gz-tag-picker
|
|
ref="tags"
|
|
v-model="obj.tags"
|
|
:readonly="formState.readOnly"
|
|
data-cy="tags"
|
|
:error-messages="form().serverErrors(this, 'tags')"
|
|
@input="fieldValueChanged('tags')"
|
|
></gz-tag-picker>
|
|
</v-col>
|
|
|
|
<v-col v-if="form().showMe(this, 'Wiki')" cols="12">
|
|
<gz-wiki
|
|
ref="wiki"
|
|
v-model="obj.wiki"
|
|
:aya-type="sockType"
|
|
:aya-id="obj.id"
|
|
: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"
|
|
:aya-type="sockType"
|
|
:aya-id="obj.id"
|
|
></gz-attachments
|
|
></v-col>
|
|
</v-row>
|
|
</v-form>
|
|
</div>
|
|
<v-overlay :value="!formState.ready || formState.loading">
|
|
<v-progress-circular indeterminate :size="64" />
|
|
</v-overlay>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
const FORM_KEY = "product-edit";
|
|
const API_BASE_URL = "product/";
|
|
const FORM_CUSTOM_TEMPLATE_KEY = "Product";
|
|
export default {
|
|
data() {
|
|
return {
|
|
formCustomTemplateKey: FORM_CUSTOM_TEMPLATE_KEY,
|
|
obj: {
|
|
id: 0,
|
|
concurrency: 0,
|
|
name: null,
|
|
active: true,
|
|
vendorId: 1,
|
|
licenseInterval: "365.0:00:00",
|
|
maintInterval: "365.0:00:00",
|
|
vendorCode: null,
|
|
ourCode: null,
|
|
wiki: null,
|
|
tags: [],
|
|
sType: 0
|
|
},
|
|
formState: {
|
|
ready: false,
|
|
dirty: false,
|
|
valid: true,
|
|
readOnly: false,
|
|
loading: true,
|
|
errorBoxMessage: null,
|
|
appError: null,
|
|
serverError: {}
|
|
},
|
|
rights: window.$gz.role.defaultRightsObject(),
|
|
sockType: window.$gz.type.Product
|
|
};
|
|
},
|
|
watch: {
|
|
formState: {
|
|
handler: function(val) {
|
|
if (this.formState.loading) {
|
|
return;
|
|
}
|
|
|
|
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");
|
|
}
|
|
|
|
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
|
|
}
|
|
},
|
|
async created() {
|
|
const vm = this;
|
|
try {
|
|
await initForm(vm);
|
|
vm.rights = window.$gz.role.getRights(window.$gz.type.Product);
|
|
vm.formState.readOnly = !vm.rights.change;
|
|
window.$gz.eventBus.$on("menu-click", clickHandler);
|
|
//---------------------------------
|
|
let setDirty = false;
|
|
//id 0 means create or duplicate to new
|
|
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;
|
|
} else {
|
|
await vm.getDataFromApi(vm.$route.params.recordid);
|
|
}
|
|
} else {
|
|
//Might be a duplicate and contain another record
|
|
if (this.$route.params.obj) {
|
|
this.obj = this.$route.params.obj;
|
|
this.obj.concurrency = undefined;
|
|
this.obj.id = 0;
|
|
this.obj.name = `${this.obj.name} - ${window.$gz.translation.get(
|
|
"Copy"
|
|
)}`;
|
|
setDirty = true;
|
|
}
|
|
}
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
loading: false,
|
|
dirty: setDirty,
|
|
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);
|
|
},
|
|
methods: {
|
|
canSave: function() {
|
|
return this.formState.valid && this.formState.dirty;
|
|
},
|
|
canDuplicate: function() {
|
|
return this.formState.valid && !this.formState.dirty;
|
|
},
|
|
sockTypes: function() {
|
|
return window.$gz.type;
|
|
},
|
|
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) {
|
|
const vm = this;
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
loading: true
|
|
});
|
|
if (!recordId) {
|
|
throw new Error(FORM_KEY + "::getDataFromApi -> Missing recordID!");
|
|
}
|
|
try {
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
const res = await window.$gz.api.get(API_BASE_URL + recordId);
|
|
if (res.error) {
|
|
if (res.error.code == "2010") {
|
|
window.$gz.form.handleObjectNotFound(vm);
|
|
}
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
vm.obj = res.data;
|
|
generateMenu(vm);
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false,
|
|
valid: true,
|
|
loading: false
|
|
});
|
|
}
|
|
} catch (error) {
|
|
window.$gz.errorHandler.handleFormError(error, vm);
|
|
} finally {
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
loading: false
|
|
});
|
|
}
|
|
},
|
|
async submit() {
|
|
const vm = this;
|
|
if (vm.canSave == false) {
|
|
return;
|
|
}
|
|
try {
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
loading: true
|
|
});
|
|
window.$gz.form.deleteAllErrorBoxErrors(vm);
|
|
const res = await window.$gz.api.upsert(API_BASE_URL, vm.obj);
|
|
if (res.error) {
|
|
vm.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(vm);
|
|
} else {
|
|
if (res.data.id) {
|
|
//POST
|
|
vm.obj = res.data;
|
|
this.$router.replace({
|
|
name: "product-edit",
|
|
params: {
|
|
recordid: res.data.id,
|
|
obj: res.data
|
|
}
|
|
});
|
|
} else {
|
|
//PUT
|
|
vm.obj.concurrency = res.data.concurrency;
|
|
}
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
dirty: false,
|
|
valid: true
|
|
});
|
|
}
|
|
} catch (ex) {
|
|
window.$gz.errorHandler.handleFormError(ex, vm);
|
|
} finally {
|
|
window.$gz.form.setFormState({
|
|
vm: vm,
|
|
loading: false
|
|
});
|
|
}
|
|
},
|
|
async remove() {
|
|
try {
|
|
const dialogResult = await window.$gz.dialog.confirmDelete();
|
|
if (dialogResult != true) {
|
|
return;
|
|
}
|
|
window.$gz.form.setFormState({
|
|
vm: this,
|
|
loading: true
|
|
});
|
|
|
|
if (this.$route.params.recordid == 0) {
|
|
JUST_DELETED = true;
|
|
|
|
this.$router.go(-1);
|
|
} else {
|
|
window.$gz.form.deleteAllErrorBoxErrors(this);
|
|
const res = await window.$gz.api.remove(
|
|
API_BASE_URL + this.$route.params.recordid
|
|
);
|
|
if (res.error) {
|
|
this.formState.serverError = res.error;
|
|
window.$gz.form.setErrorBoxErrors(this);
|
|
} else {
|
|
JUST_DELETED = true;
|
|
this.$router.go(-1);
|
|
}
|
|
}
|
|
} catch (error) {
|
|
window.$gz.errorHandler.handleFormError(error, this);
|
|
} finally {
|
|
window.$gz.form.setFormState({
|
|
vm: this,
|
|
loading: false
|
|
});
|
|
}
|
|
},
|
|
duplicate() {
|
|
this.$router.push({
|
|
name: "product-edit",
|
|
params: {
|
|
recordid: 0,
|
|
obj: this.obj
|
|
}
|
|
});
|
|
}
|
|
}
|
|
};
|
|
|
|
/////////////////////////////
|
|
//
|
|
//
|
|
async function clickHandler(menuItem) {
|
|
if (!menuItem) {
|
|
return;
|
|
}
|
|
const 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: "product-edit",
|
|
params: { recordid: 0 }
|
|
});
|
|
break;
|
|
case "duplicate":
|
|
m.vm.duplicate();
|
|
break;
|
|
case "report":
|
|
{
|
|
const res = await m.vm.$refs.reportSelector.open(
|
|
{
|
|
AType: window.$gz.type.Product,
|
|
selectedRowIds: [m.vm.obj.id]
|
|
},
|
|
m.id
|
|
);
|
|
if (res == null) {
|
|
return;
|
|
}
|
|
window.$gz.form.setLastReportMenuItem(FORM_KEY, res, m.vm);
|
|
}
|
|
break;
|
|
case "WorkOrderList":
|
|
m.vm.$router.push({
|
|
name: "svc-workorders",
|
|
params: {
|
|
aType: m.vm.sockType,
|
|
objectId: m.vm.obj.id,
|
|
name: m.vm.obj.name
|
|
}
|
|
});
|
|
break;
|
|
case "QuoteList":
|
|
m.vm.$router.push({
|
|
name: "svc-quotes",
|
|
params: {
|
|
aType: m.vm.sockType,
|
|
objectId: m.vm.obj.id,
|
|
name: m.vm.obj.name
|
|
}
|
|
});
|
|
break;
|
|
case "PMList":
|
|
m.vm.$router.push({
|
|
name: "svc-pms",
|
|
params: {
|
|
aType: m.vm.sockType,
|
|
objectId: m.vm.obj.id,
|
|
name: m.vm.obj.name
|
|
}
|
|
});
|
|
break;
|
|
default:
|
|
window.$gz.eventBus.$emit(
|
|
"notify-warning",
|
|
FORM_KEY + "::context click: [" + m.key + "]"
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
//////////////////////
|
|
//
|
|
//
|
|
function generateMenu(vm) {
|
|
const menuOptions = {
|
|
isMain: false,
|
|
readOnly: vm.formState.readOnly,
|
|
icon: "$sockiBarCode",
|
|
title: "Product",
|
|
helpUrl: "svc-products",
|
|
formData: {
|
|
sockType: window.$gz.type.Product,
|
|
recordId: vm.$route.params.recordid,
|
|
formCustomTemplateKey: FORM_CUSTOM_TEMPLATE_KEY,
|
|
recordName: vm.obj.name
|
|
},
|
|
menuItems: []
|
|
};
|
|
|
|
if (vm.rights.change) {
|
|
menuOptions.menuItems.push({
|
|
title: "Save",
|
|
icon: "$sockiSave",
|
|
surface: true,
|
|
key: FORM_KEY + ":save",
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
menuOptions.menuItems.push({
|
|
title: "Report",
|
|
icon: "$sockiFileAlt",
|
|
key: FORM_KEY + ":report",
|
|
vm: vm
|
|
});
|
|
|
|
const lastReport = window.$gz.form.getLastReport(FORM_KEY);
|
|
if (lastReport != null) {
|
|
menuOptions.menuItems.push({
|
|
title: lastReport.name,
|
|
notrans: true,
|
|
icon: "$sockiFileAlt",
|
|
key: FORM_KEY + ":report:" + lastReport.id,
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
if (vm.rights.change) {
|
|
menuOptions.menuItems.push({
|
|
title: "New",
|
|
icon: "$sockiPlus",
|
|
key: FORM_KEY + ":new",
|
|
vm: vm
|
|
});
|
|
}
|
|
|
|
if (vm.rights.change && vm.$route.params.recordid != 0) {
|
|
menuOptions.menuItems.push({
|
|
title: "Duplicate",
|
|
icon: "$sockiClone",
|
|
key: FORM_KEY + ":duplicate",
|
|
vm: vm
|
|
});
|
|
}
|
|
if (vm.rights.delete && vm.$route.params.recordid != 0) {
|
|
menuOptions.menuItems.push({
|
|
title: "Delete",
|
|
icon: "$sockiTrashAlt",
|
|
surface: false,
|
|
key: FORM_KEY + ":delete",
|
|
vm: vm
|
|
});
|
|
}
|
|
menuOptions.menuItems.push({ divider: true, inset: false });
|
|
|
|
menuOptions.menuItems.push({
|
|
title: "WorkOrderList",
|
|
icon: "$sockiTools",
|
|
key: FORM_KEY + ":WorkOrderList",
|
|
vm: vm
|
|
});
|
|
|
|
menuOptions.menuItems.push({
|
|
title: "QuoteList",
|
|
icon: "$sockiPencilAlt",
|
|
key: FORM_KEY + ":QuoteList",
|
|
vm: vm
|
|
});
|
|
|
|
menuOptions.menuItems.push({
|
|
title: "PMList",
|
|
icon: "$sockiBusinessTime",
|
|
key: FORM_KEY + ":PMList",
|
|
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();
|
|
await window.$gz.formCustomTemplate.get(FORM_CUSTOM_TEMPLATE_KEY, vm);
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////
|
|
//
|
|
// Ensures UI translated text is available
|
|
//
|
|
async function fetchTranslatedText() {
|
|
await window.$gz.translation.cacheTranslations([
|
|
"Product",
|
|
"ProductName",
|
|
"Vendor",
|
|
"ProductLicenseInterval",
|
|
"ProductMaintInterval",
|
|
"ProductProductOverseerID",
|
|
"ProductVendorCode",
|
|
"ProductOurCode"
|
|
]);
|
|
}
|
|
/*
|
|
public string Name { get; set; }
|
|
public bool Active { get; set; }
|
|
public long VendorId { get; set; }
|
|
public TimeSpan LicenseInterval { get; set; }
|
|
public TimeSpan MaintInterval { get; set; }
|
|
public string VendorCode { get; set; }
|
|
public string OurCode { get; set; }
|
|
public string Wiki { get; set; }
|
|
public List<string> Tags { get; set; }
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'Product', 'Product' FROM atranslation t where t.baselanguage = 'en'");
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'ProductList', 'Products' FROM atranslation t where t.baselanguage = 'en'");
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'ProductName', 'Name' FROM atranslation t where t.baselanguage = 'en'");
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'ProductLicenseInterval', 'License period' FROM atranslation t where t.baselanguage = 'en'");
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'ProductMaintInterval', 'Maintenance period' FROM atranslation t where t.baselanguage = 'en'");
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'ProductVendorCode', 'Vendor code' FROM atranslation t where t.baselanguage = 'en'");
|
|
await ExecQueryAsync("INSERT INTO atranslationitem(translationid,key,display) SELECT t.id, 'ProductOurCode', 'Our code' FROM atranslation t where t.baselanguage = 'en'");
|
|
|
|
|
|
*/
|
|
</script>
|