This commit is contained in:
2021-04-13 22:15:10 +00:00
parent f85b9cbee3
commit a2551951b7
3 changed files with 28 additions and 2 deletions

View File

@@ -240,6 +240,10 @@ OVERALL
- load and stress test on client
todo: WorkOrderItemTask??
is this really a collection like scheduled users or labors now??
Does it show on a main table in it's own form??
todo: introduce menu item for woitem table descendant view (not wired up yet, just there to remind and as placeholder)
@@ -254,8 +258,9 @@ todo: can I turn control labels into hyperlinks for getting to feeder records?
todo: Translations stuff
- "delete selected item" text instead of "Delete" for subitems
- workordercustomX translation keys not set yet, just copy workorderItem ones I guess
- clean up translation text, many things are badly worded for wo like all *List could just use plural form and be shorter
as coding it look for areas to be cleaned up
- clean up translation text, many things are badly worded for wo like all *List could just use plural form and be shorteras coding it look for areas to be cleaned up
- WorkOrderItemUnitList key added
todo: UI wo descendants data table exposure (old v7 wo tree nav pane ui)
expose them as menu options from the workorderlist itself

View File

@@ -139,6 +139,15 @@ export default {
"HeadOfficeList",
"Contacts",
"WorkOrderList",
"WorkOrderItemList",
"WorkOrderItemExpenseList",
"WorkOrderItemLaborList",
"WorkOrderItemLoanList",
"WorkOrderItemPartList",
"WorkOrderItemPartRequestList",
"WorkOrderItemScheduledUserList",
"WorkOrderItemTravelList",
"WorkOrderItemUnitList",
"WorkOrderServiceTemplate",
"QuoteList",
"WorkOrderQuoteTemplate",

View File

@@ -162,6 +162,18 @@ function generateMenu(vm) {
key: FORM_KEY + ":extensions",
vm: vm
});
menuOptions.menuItems.push({ divider: true, inset: false });
menuOptions.menuItems.push({
title: "WorkOrderItemList",
icon: "$ayiWrench",
key: FORM_KEY + ":WorkOrderItemList",
vm: vm
});
menuOptions.menuItems.push({ divider: true, inset: false });
window.$gz.eventBus.$emit("menu-change", menuOptions);
}
</script>