This commit is contained in:
2022-12-24 19:57:51 +00:00
parent 72d746cffe
commit 84d55331ea
12 changed files with 1879 additions and 12 deletions

View File

@@ -16,7 +16,8 @@ export default {
Global: { Change: 2, ReadFullRecord: 1, Select: 0 },
GlobalOps: { Change: 16384, ReadFullRecord: 8192, Select: 0 },
User: { Change: 2, ReadFullRecord: 1, Select: 131071 },
UserOptions: { Change: 2, ReadFullRecord: 1, Select: 0 },
UserOptions: { Change: 2, ReadFullRecord: 1, Select: 0 },
Vendor: { Change: 106, ReadFullRecord: 98565, Select: 131071 },
ServerState: { Change: 16384, ReadFullRecord: 131071, Select: 0 },
LogFile: { Change: 0, ReadFullRecord: 24576, Select: 0 },
Backup: { Change: 16384, ReadFullRecord: 8195, Select: 0 },

View File

@@ -404,6 +404,8 @@ export default {
return "$sockiPencilRuler";
case window.$gz.type.Customer:
return "$sockiAddressCard";
case window.$gz.type.Vendor:
return "$ayiStore";
case window.$gz.type.ServerJob:
return "$sockiRobot";
@@ -510,7 +512,7 @@ export default {
//
sleepAsync: function(milliseconds) {
// eslint-disable-next-line
return new Promise((resolve) => setTimeout(resolve, milliseconds));
return new Promise(resolve => setTimeout(resolve, milliseconds));
},
///////////////////////////////////////////////
// sortByKey lodash "sortBy" replacement

View File

@@ -168,6 +168,13 @@ ServiceContractor = 5 */
sub = [];
sub.push({
title: "GZCaseList",
icon: "$sockiCoffee",
route: "/biz-gzcase-list",
key: key++
});
sub.push({
title: "LicenseList",
icon: "$sockiGem",
@@ -204,9 +211,9 @@ ServiceContractor = 5 */
});
sub.push({
title: "GZCaseList",
icon: "$sockiCoffee",
route: "/biz-gzcase-list",
title: "VendorList",
icon: "$sockiStore",
route: "/biz-vendor-list",
key: key++
});

View File

@@ -15,6 +15,7 @@ export default {
FileAttachment: 17,
DataListSavedFilter: 18,
FormCustom: 19,
Vendor: 33,
GlobalOps: 47, //really only used for rights, not an object type of any kind
BizMetrics: 48, //deprecate? Not used for anything as of nov 2020
Backup: 49,

View File

@@ -109,6 +109,7 @@ export default {
"Service",
"CustomerList",
"HeadOfficeList",
"VendorList",
"CustomerNotifySubscriptionList",
"Contacts",
"AdministrationGlobalSettings",

View File

@@ -357,6 +357,18 @@ export default new Router({
component: () =>
import(/* webpackChunkName: "biz" */ "./views/biz-product.vue")
},
{
path: "/biz-vendor-list",
name: "biz-vendor-list",
component: () =>
import(/* webpackChunkName: "biz" */ "./views/biz-vendor-list.vue")
},
{
path: "/biz-vendor-list/:recordid",
name: "vendor-edit",
component: () =>
import(/* webpackChunkName: "biz" */ "./views/biz-vendor.vue")
},
{
path: "/biz-gzcase-list",
name: "biz-gzcase-list",

View File

@@ -34,6 +34,7 @@
: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>
@@ -178,14 +179,14 @@ export default {
concurrency: 0,
name: null,
active: true,
notes: null,
vendorId: 1,
licenseInterval: "365.0:00:00",
maintInterval: "365.0:00:00",
vendorCode: null,
ourCode: null,
wiki: null,
customFields: "{}",
tags: [],
dateStarted: window.$gz.locale.nowUTC8601String(),
dateCompleted: null,
productOverseerId: null,
accountNumber: null
sType: 0
},
formState: {
ready: false,
@@ -528,7 +529,7 @@ function generateMenu(vm) {
const menuOptions = {
isMain: false,
readOnly: vm.formState.readOnly,
icon: "$sockiProductDiagram",
icon: "$sockiBarCode",
title: "Product",
helpUrl: "svc-products",
formData: {

View File

@@ -0,0 +1,178 @@
<template>
<div>
<gz-report-selector ref="reportSelector"></gz-report-selector>
<gz-extensions
ref="extensions"
:aya-type="sockType"
:selected-items="selectedItems"
>
</gz-extensions>
<gz-data-table
ref="gzdatatable"
form-key="vendor-list"
data-list-key="VendorDataList"
:show-select="rights.read"
:reload="reload"
data-cy="vendorsTable"
:client-criteria="clientCriteria"
:pre-filter-mode="preFilterMode"
@selection-change="handleSelected"
@clear-pre-filter="clearPreFilter"
>
</gz-data-table>
</div>
</template>
<script>
const FORM_KEY = "vendor-list";
export default {
data() {
return {
rights: window.$gz.role.defaultRightsObject(),
sockType: window.$gz.type.Vendor,
selectedItems: [],
reload: false,
clientCriteria: undefined,
preFilterMode: null
};
},
created() {
this.rights = window.$gz.role.getRights(window.$gz.type.Vendor);
window.$gz.eventBus.$on("menu-click", clickHandler);
//------ pre-filter ----
//OPTIONAL "Show All vendors of head office" FILTER
this.objectId = window.$gz.util.stringToIntOrNull(
this.$route.params.objectId
);
this.aForType = window.$gz.util.stringToIntOrNull(this.$route.params.sockType);
if (this.objectId && this.objectId != 0 && this.aForType) {
//OBJECTID,AYsockType
this.clientCriteria = `${this.objectId},${this.aForType}`;
this.preFilterMode = {
icon: window.$gz.util.iconForType(this.aForType),
id: this.objectId,
socktype: this.aForType,
viz: this.$route.params.name,
clearable: true
};
}
//------ /pre-filter ----
generateMenu(this);
},
beforeDestroy() {
window.$gz.eventBus.$off("menu-click", clickHandler);
},
methods: {
handleSelected(selected) {
this.selectedItems = selected;
},
clearPreFilter() {
this.clientCriteria = null;
this.preFilterMode = null;
this.reload = !this.reload;
}
}
};
/////////////////////////////
//
//
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 "new":
m.vm.$router.push({
name: "vendor-edit",
params: { recordid: 0 }
});
break;
case "extensions":
{
const res = await m.vm.$refs.extensions.open(
m.vm.$refs.gzdatatable.getDataListSelection(window.$gz.type.Vendor)
);
if (res && res.refresh == true) {
m.vm.reload = !m.vm.reload;
}
}
break;
case "report":
{
const res = await m.vm.$refs.reportSelector.open(
m.vm.$refs.gzdatatable.getDataListSelection(window.$gz.type.Vendor),
m.id
);
if (res == null) {
return;
}
window.$gz.form.setLastReportMenuItem(FORM_KEY, res, m.vm);
}
break;
default:
window.$gz.eventBus.$emit(
"notify-warning",
FORM_KEY + "::context click: [" + m.key + "]"
);
}
}
}
//////////////////////
//
//
function generateMenu(vm) {
const menuOptions = {
isMain: true,
icon: "$sockiStore",
title: "VendorList",
helpUrl: "vendors",
menuItems: [],
formData: {
sockType: window.$gz.type.Vendor
}
};
if (vm.rights.change) {
menuOptions.menuItems.push({
title: "New",
icon: "$sockiPlus",
surface: true,
key: FORM_KEY + ":new",
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
});
}
menuOptions.menuItems.push({
title: "Extensions",
icon: "$sockiPuzzlePiece",
key: FORM_KEY + ":extensions",
vm: vm
});
window.$gz.eventBus.$emit("menu-change", menuOptions);
}
</script>

File diff suppressed because it is too large Load Diff